tools/include/nolibc/sys/reboot.h

Source file repositories/reference/linux-study-clean/tools/include/nolibc/sys/reboot.h

File Facts

System
Linux kernel
Corpus path
tools/include/nolibc/sys/reboot.h
Extension
.h
Size
726 bytes
Lines
35
Domain
Support Tooling And Documentation
Bucket
tools
Inferred role
Support Tooling And Documentation: implementation source
Status
source implementation candidate

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

#include "../nolibc.h"

#ifndef _NOLIBC_SYS_REBOOT_H
#define _NOLIBC_SYS_REBOOT_H

#include "../sys.h"

#include <linux/reboot.h>

/*
 * int reboot(int cmd);
 * <cmd> is among LINUX_REBOOT_CMD_*
 */

static __attribute__((unused))
ssize_t _sys_reboot(int magic1, int magic2, int cmd, void *arg)
{
	return __nolibc_syscall4(__NR_reboot, magic1, magic2, cmd, arg);
}

static __attribute__((unused))
int reboot(int cmd)
{
	return __sysret(_sys_reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, cmd, NULL));
}

#endif /* _NOLIBC_SYS_REBOOT_H */

Annotation

Implementation Notes