Subject: Re: [Help] making my system calls
To: Ilhwan Kwon <ik26+@andrew.cmu.edu>
From: Bill Sommerfeld <sommerfeld@orchard.arlington.ma.us>
List: tech-kern
Date: 02/05/1999 17:38:57
User-space system call stubs are not automatically created.

You have (at least) two options:

 1) use syscall(syscall-number, arg0, arg1, ...) to invoke the call..
    This is probably easiest

 2) add the system call codes to <sys/syscall.h> and to the list in
/usr/src/lib/libc/sys/Makefile.inc and rebuild libc.

					- Bill