diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2006-12-13 16:59:44 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2006-12-13 16:59:44 +0000 |
commit | b9fe011cdfb0a3014e68a6e82007b6c2703a340b (patch) | |
tree | da41db3ae096ef0da92b22affda41f5e4a287117 /desc.c | |
parent | 35a55785ea8ff44d214af52085e3a5ea624730aa (diff) | |
download | strace-b9fe011cdfb0a3014e68a6e82007b6c2703a340b.tar.gz |
2006-12-10 Dmitry V. Levin <ldv@altlinux.org>
Make several global variables static.
#ifdef definitions of rarely unused functions.
* defs.h (rflag, tflag, outfname): Remove.
* strace.c (iflag, interactive, pflag_seen, rflag, tflag,
outfname, username): Make static.
* desc.c (sys_getdtablesize): Define only for
ALPHA || FREEBSD || SUNOS4.
* file.c (sys_fchroot): Define only for SUNOS4 || SVR4.
(sys_mkfifo): Define only for FREEBSD.
* mem.c (sys_sbrk): Define only for FREEBSD || SUNOS4.
(sys_getpagesize): Define only for
ALPHA || FREEBSD || IA64 || SUNOS4 || SVR4.
* net.c (sys_so_socket): Define only for SVR4.
* process.c (sys_gethostid): Define only for
FREEBSD || SUNOS4 || SVR4.
(sys_gethostname): Define only for
ALPHA || FREEBSD || SUNOS4 || SVR4.
(sys_setpgrp): Define only for ALPHA || SUNOS4 || SVR4.
(sys_execv): Define only for SPARC || SPARC64 || SUNOS4.
* signal.c (sys_sigblock): Define only for FREEBSD || SUNOS4.
(sys_sighold, sys_sigwait): Define only for SVR4.
(sys_killpg): Define only for FREEBSD || SUNOS4.
* stream.c (sys_getmsg): Define only for
SPARC || SPARC64 || SUNOS4 || SVR4.
* syscall.c (sys_indir): Define only for SUNOS4.
Diffstat (limited to 'desc.c')
-rw-r--r-- | desc.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -391,12 +391,14 @@ struct tcb *tcp; return 0; } +#if defined(ALPHA) || defined(FREEBSD) || defined(SUNOS4) int sys_getdtablesize(tcp) struct tcb *tcp; { return 0; } +#endif /* ALPHA || FREEBSD || SUNOS4 */ static int decode_select(tcp, args, bitness) |