source: trunk/minix/lib/other/_reboot.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 429 bytes
Line 
1/* reboot.c - Systemcall interface to mm/signal.c::do_reboot()
2
3 author: Edvard Tuinder v892231@si.hhs.NL
4 */
5
6#include <lib.h>
7#define reboot _reboot
8#include <unistd.h>
9#include <stdarg.h>
10
11int reboot(int how, ...)
12{
13 message m;
14 va_list ap;
15
16 va_start(ap, how);
17 if ((m.m1_i1 = how) == RBT_MONITOR) {
18 m.m1_p1 = va_arg(ap, char *);
19 m.m1_i2 = va_arg(ap, size_t);
20 }
21 va_end(ap);
22
23 return _syscall(MM, REBOOT, &m);
24}
Note: See TracBrowser for help on using the repository browser.