Fix possible system freeze on Mac OS X.
[gnupg.git] / jnlib / mischelp.h
blob6bf7a9174bce70a909463ad3da069e980af5d805
1 /* mischelp.h - Miscellaneous helper macros and functions
2 * Copyright (C) 1999, 2000, 2001, 2002, 2003,
3 * 2006, 2007, 2009 Free Software Foundation, Inc.
5 * This file is part of JNLIB.
7 * JNLIB is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 3 of
10 * the License, or (at your option) any later version.
12 * JNLIB is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #ifndef LIBJNLIB_MISCHELP_H
22 #define LIBJNLIB_MISCHHELP_H
25 /* Check whether the files NAME1 and NAME2 are identical. This is for
26 example achieved by comparing the inode numbers of the files. */
27 int same_file_p (const char *name1, const char *name2);
30 #ifndef HAVE_TIMEGM
31 #include <time.h>
32 time_t timegm (struct tm *tm);
33 #endif /*!HAVE_TIMEGM*/
36 #define DIM(v) (sizeof(v)/sizeof((v)[0]))
37 #define DIMof(type,member) DIM(((type *)0)->member)
40 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 )
41 # define JNLIB_GCC_M_FUNCTION 1
42 # define JNLIB_GCC_A_NR __attribute__ ((noreturn))
43 # define JNLIB_GCC_A_PRINTF( f, a ) __attribute__ ((format (printf,f,a)))
44 # define JNLIB_GCC_A_NR_PRINTF( f, a ) \
45 __attribute__ ((noreturn, format (printf,f,a)))
46 #else
47 # define JNLIB_GCC_A_NR
48 # define JNLIB_GCC_A_PRINTF( f, a )
49 # define JNLIB_GCC_A_NR_PRINTF( f, a )
50 #endif
53 /* To avoid that a compiler optimizes certain memset calls away, these
54 macros may be used instead. */
55 #define wipememory2(_ptr,_set,_len) do { \
56 volatile char *_vptr=(volatile char *)(_ptr); \
57 size_t _vlen=(_len); \
58 while(_vlen) { *_vptr=(_set); _vptr++; _vlen--; } \
59 } while(0)
60 #define wipememory(_ptr,_len) wipememory2(_ptr,0,_len)
63 /* Include hacks which are mainly required for Slowaris. */
64 #if defined(JNLIB_NEED_AFLOCAL) && !defined(HAVE_W32_SYSTEM)
65 #include <sys/socket.h>
66 #include <sys/un.h>
68 #ifndef PF_LOCAL
69 # ifdef PF_UNIX
70 # define PF_LOCAL PF_UNIX
71 # else
72 # define PF_LOCAL AF_UNIX
73 # endif
74 #endif /*PF_LOCAL*/
75 #ifndef AF_LOCAL
76 # define AF_LOCAL AF_UNIX
77 #endif /*AF_UNIX*/
79 /* We used to avoid this macro in GnuPG and inlined the AF_LOCAL name
80 length computation directly with the little twist of adding 1 extra
81 byte. It seems that this was needed once on an old HP/UX box and
82 there are also rumours that 4.3 Reno and DEC systems need it. This
83 one-off buglet did not harm any current system until it came to Mac
84 OS X where the kernel (as of May 2009) exhibited a strange bug: The
85 systems basically froze in the connect call if the passed name
86 contained an invalid directory part. Ignore the old Unices. */
87 #ifndef SUN_LEN
88 # define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path) \
89 + strlen ((ptr)->sun_path))
90 #endif /*SUN_LEN*/
91 #endif /*JNLIB_NEED_AFLOCAL && !HAVE_W32_SYSTEM*/
94 #endif /*LIBJNLIB_MISCHELP_H*/