mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 13:20:06 +00:00
adcf0e4a33
* iconv/iconv_prog.c (main): Handle input file name "-" correctly. Recognize option -s, -c, and -l. 2000-04-20 Thorsten Kukuk <kukuk@suse.de> * nscd/nscd.c: Start new session for nscd, drop privilegs to configured user if requested and no -S parameter are used. * nscd/nscd.conf: Add new option "server-user". * nscd/nscd_conf.c: Add support for new "server-user" option. * nscd/nscd.h: Add declaration for server_user variable. Based on patch by Chris Wing <wingc@engin.umich.edu> 2000-04-29 Mark Kettenis <kettenis@gnu.org> * sysdeps/unix/sysv/linux/i386/sigaction.c: Add comment explaining that changing the __restore and __restore_rt signal return code will break GDB. 2000-04-29 Mark Kettenis <kettenis@gnu.org> * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Do not include <sys/user.h>. 2000-04-29 Mark Kettenis <kettenis@gnu.org> * conform/data/ucontext.h-data: Allow ss_* instead of SS_*. 2000-04-29 Ulrich Drepper <drepper@redhat.com>
21 lines
495 B
Plaintext
21 lines
495 B
Plaintext
type mcontext_t
|
|
|
|
type ucontext_t
|
|
|
|
element {struct ucontext_t} {ucontext_t*} uc_link
|
|
element {struct ucontext_t} sigset_t uc_sigmask
|
|
element {struct ucontext_t} stack_t uc_stack
|
|
element {struct ucontext_t} mcontext_t uc_mcontext
|
|
|
|
type sigset_t
|
|
type stack_t
|
|
|
|
function int getcontext (ucontext_t*)
|
|
function int setcontext (const ucontext_t*)
|
|
function void makecontext (ucontext_t*, void(*)(void), int, ...)
|
|
function int swapcontext (ucontext_t*, const ucontext_t*)
|
|
|
|
allow uc_*
|
|
allow ss_*
|
|
allow *_t
|