Changeset 11 for trunk/minix/servers/pm
- Timestamp:
- May 18, 2011, 11:24:05 AM (14 years ago)
- Location:
- trunk/minix/servers/pm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/minix/servers/pm/misc.c
r9 r11 428 428 } 429 429 430 PUBLIC int do_foo() 431 { 432 printf("Foo syscall called!\n"); 433 return OK; 434 } -
trunk/minix/servers/pm/proto.h
r9 r11 57 57 58 58 /* misc.c */ 59 _PROTOTYPE( int do_foo, (void) ); 59 60 _PROTOTYPE( int do_reboot, (void) ); 60 61 _PROTOTYPE( int do_procstat, (void) ); -
trunk/minix/servers/pm/table.c
r9 r11 111 111 no_sys, /* 93 = truncate */ 112 112 no_sys, /* 94 = ftruncate */ 113 do_foo, /* 95 = foo */ 113 114 }; 114 115 /* This should not fail with "array size is negative": */
Note:
See TracChangeset
for help on using the changeset viewer.