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
);
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)))
47 # define JNLIB_GCC_A_NR
48 # define JNLIB_GCC_A_PRINTF( f, a )
49 # define JNLIB_GCC_A_NR_PRINTF( f, a )
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--; } \
60 #define wipememory(_ptr,_len) wipememory2(_ptr,0,_len)
63 /* Include hacks which are mainly required for Slowaris. */
64 #ifdef JNLIB_NEED_AFLOCAL
65 #ifndef HAVE_W32_SYSTEM
66 # include <sys/socket.h>
74 # define PF_LOCAL PF_UNIX
76 # define PF_LOCAL AF_UNIX
80 # define AF_LOCAL AF_UNIX
83 /* We used to avoid this macro in GnuPG and inlined the AF_LOCAL name
84 length computation directly with the little twist of adding 1 extra
85 byte. It seems that this was needed once on an old HP/UX box and
86 there are also rumours that 4.3 Reno and DEC systems need it. This
87 one-off buglet did not harm any current system until it came to Mac
88 OS X where the kernel (as of May 2009) exhibited a strange bug: The
89 systems basically froze in the connect call if the passed name
90 contained an invalid directory part. Ignore the old Unices. */
92 # define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path) \
93 + strlen ((ptr)->sun_path))
95 #endif /*JNLIB_NEED_AFLOCAL*/
98 #endif /*LIBJNLIB_MISCHELP_H*/