24ec0d73b5
- introduce new call numbers, names, and field aliases; - initialize request messages to zero for all ABI calls; - format callnr.h in the same way as com.h; - redo call tables in both servers; - remove param.h namespace pollution in the servers; - make brk(2) go to VM directly, rather than through PM; - remove obsolete BRK, UTIME, and WAIT calls; - clean up path copying routine in VFS; - move remaining system calls from libminlib to libc; - correct some errno-related mistakes in libc routines. Change-Id: I2d8ec5d061cd7e0b30c51ffd77aa72ebf84e2565
91 lines
2.1 KiB
C
91 lines
2.1 KiB
C
/* Function prototypes. */
|
|
|
|
struct mproc;
|
|
|
|
#include <minix/timers.h>
|
|
|
|
/* alarm.c */
|
|
int do_itimer(void);
|
|
void set_alarm(struct mproc *rmp, clock_t ticks);
|
|
void check_vtimer(int proc_nr, int sig);
|
|
|
|
/* exec.c */
|
|
int do_exec(void);
|
|
int do_newexec(void);
|
|
int do_execrestart(void);
|
|
void exec_restart(struct mproc *rmp, int result, vir_bytes pc, vir_bytes sp,
|
|
vir_bytes ps_str);
|
|
|
|
/* forkexit.c */
|
|
int do_fork(void);
|
|
int do_srv_fork(void);
|
|
int do_exit(void);
|
|
void exit_proc(struct mproc *rmp, int exit_status, int dump_core);
|
|
void exit_restart(struct mproc *rmp, int dump_core);
|
|
int do_waitpid(void);
|
|
int wait_test(struct mproc *rmp, struct mproc *child);
|
|
|
|
/* getset.c */
|
|
int do_get(void);
|
|
int do_set(void);
|
|
|
|
/* main.c */
|
|
int main(void);
|
|
void reply(int proc_nr, int result);
|
|
|
|
/* mcontext.c */
|
|
int do_getmcontext(void);
|
|
int do_setmcontext(void);
|
|
|
|
/* misc.c */
|
|
int do_reboot(void);
|
|
int do_sysuname(void);
|
|
int do_getsysinfo(void);
|
|
int do_getprocnr(void);
|
|
int do_getepinfo(void);
|
|
int do_svrctl(void);
|
|
int do_getsetpriority(void);
|
|
int do_getrusage(void);
|
|
|
|
/* schedule.c */
|
|
void sched_init(void);
|
|
int sched_start_user(endpoint_t ep, struct mproc *rmp);
|
|
int sched_nice(struct mproc *rmp, int nice);
|
|
|
|
/* profile.c */
|
|
int do_sprofile(void);
|
|
int do_cprofile(void);
|
|
|
|
/* signal.c */
|
|
int do_kill(void);
|
|
int do_srv_kill(void);
|
|
int process_ksig(endpoint_t proc_nr_e, int signo);
|
|
int check_sig(pid_t proc_id, int signo, int ksig);
|
|
void sig_proc(struct mproc *rmp, int signo, int trace, int ksig);
|
|
int do_sigaction(void);
|
|
int do_sigpending(void);
|
|
int do_sigprocmask(void);
|
|
int do_sigreturn(void);
|
|
int do_sigsuspend(void);
|
|
void check_pending(struct mproc *rmp);
|
|
void restart_sigs(struct mproc *rmp);
|
|
void vm_notify_sig_wrapper(endpoint_t ep);
|
|
|
|
/* time.c */
|
|
int do_stime(void);
|
|
int do_time(void);
|
|
int do_getres(void);
|
|
int do_gettime(void);
|
|
int do_settime(void);
|
|
|
|
/* trace.c */
|
|
int do_trace(void);
|
|
void trace_stop(struct mproc *rmp, int signo);
|
|
|
|
/* utility.c */
|
|
pid_t get_free_pid(void);
|
|
char *find_param(const char *key);
|
|
struct mproc *find_proc(pid_t lpid);
|
|
int nice_to_priority(int nice, unsigned *new_q);
|
|
int pm_isokendpt(int ep, int *proc);
|
|
void tell_vfs(struct mproc *rmp, message *m_ptr);
|