003 File Manager
Current Path:
/usr/src/contrib/sendmail/include/sm
usr
/
src
/
contrib
/
sendmail
/
include
/
sm
/
📁
..
📄
assert.h
(2.88 KB)
📄
bdb.h
(1.29 KB)
📄
bitops.h
(1.78 KB)
📄
cdefs.h
(3.8 KB)
📄
cf.h
(533 B)
📄
clock.h
(2.16 KB)
📄
conf.h
(91.52 KB)
📄
config.h
(4.08 KB)
📄
debug.h
(3.06 KB)
📄
errstring.h
(3.27 KB)
📄
exc.h
(3.54 KB)
📄
fdset.h
(690 B)
📄
gen.h
(1.78 KB)
📄
heap.h
(3.19 KB)
📄
io.h
(11.73 KB)
📄
ldap.h
(3.44 KB)
📄
limits.h
(1.26 KB)
📄
mbdb.h
(1.05 KB)
📄
misc.h
(489 B)
📄
notify.h
(520 B)
📁
os
📄
path.h
(824 B)
📄
rpool.h
(4.07 KB)
📄
sem.h
(1.37 KB)
📄
sendmail.h
(662 B)
📄
setjmp.h
(1.33 KB)
📄
shm.h
(1 KB)
📄
signal.h
(2.01 KB)
📄
string.h
(2.65 KB)
📄
sysexits.h
(4.24 KB)
📄
tailq.h
(5.77 KB)
📄
test.h
(912 B)
📄
time.h
(1.32 KB)
📄
types.h
(1.62 KB)
📄
varargs.h
(1.29 KB)
📄
xtrap.h
(833 B)
Editing: setjmp.h
/* * Copyright (c) 2000-2001 Proofpoint, Inc. and its suppliers. * All rights reserved. * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the sendmail distribution. * * $Id: setjmp.h,v 1.4 2013-11-22 20:51:31 ca Exp $ */ #ifndef SM_SETJMP_H # define SM_SETJMP_H # include <sm/config.h> # include <setjmp.h> /* ** sm_setjmp_sig is a setjmp that saves the signal mask. ** sm_setjmp_nosig is a setjmp that does *not* save the signal mask. ** SM_JMPBUF_T is used with both of the above macros. ** ** On most systems, these can be implemented using sigsetjmp. ** Some old BSD systems do not have sigsetjmp, but they do have ** setjmp and _setjmp, which are just as good. */ # if SM_CONF_SIGSETJMP typedef sigjmp_buf SM_JMPBUF_T; # define sm_setjmp_sig(buf) sigsetjmp(buf, 1) # define sm_setjmp_nosig(buf) sigsetjmp(buf, 0) # define sm_longjmp_sig(buf, val) siglongjmp(buf, val) # define sm_longjmp_nosig(buf, val) siglongjmp(buf, val) # else /* SM_CONF_SIGSETJMP */ typedef jmp_buf SM_JMPBUF_T; # define sm_setjmp_sig(buf) setjmp(buf) # define sm_longjmp_sig(buf, val) longjmp(buf, val) # define sm_setjmp_nosig(buf) _setjmp(buf) # define sm_longjmp_nosig(buf, val) _longjmp(buf, val) # endif /* SM_CONF_SIGSETJMP */ #endif /* ! SM_SETJMP_H */
Upload File
Create Folder