]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/cdefs.h
Provide sf_buf_ref() to optimize refcounting of already allocated
[FreeBSD/FreeBSD.git] / sys / sys / cdefs.h
1 /*-
2  * Copyright (c) 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Berkeley Software Design, Inc.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 4. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  *      @(#)cdefs.h     8.8 (Berkeley) 1/9/95
33  * $FreeBSD$
34  */
35
36 #ifndef _SYS_CDEFS_H_
37 #define _SYS_CDEFS_H_
38
39 /*
40  * Testing against Clang-specific extensions.
41  */
42
43 #ifndef __has_extension
44 #define __has_extension         __has_feature
45 #endif
46 #ifndef __has_feature
47 #define __has_feature(x)        0
48 #endif
49 #ifndef __has_include
50 #define __has_include(x)        0
51 #endif
52 #ifndef __has_builtin
53 #define __has_builtin(x)        0
54 #endif
55
56 #if defined(__cplusplus)
57 #define __BEGIN_DECLS   extern "C" {
58 #define __END_DECLS     }
59 #else
60 #define __BEGIN_DECLS
61 #define __END_DECLS
62 #endif
63
64 /*
65  * This code has been put in place to help reduce the addition of
66  * compiler specific defines in FreeBSD code.  It helps to aid in
67  * having a compiler-agnostic source tree.
68  */
69
70 #if defined(__GNUC__) || defined(__INTEL_COMPILER)
71
72 #if __GNUC__ >= 3 || defined(__INTEL_COMPILER)
73 #define __GNUCLIKE_ASM 3
74 #define __GNUCLIKE_MATH_BUILTIN_CONSTANTS
75 #else
76 #define __GNUCLIKE_ASM 2
77 #endif
78 #define __GNUCLIKE___TYPEOF 1
79 #define __GNUCLIKE___OFFSETOF 1
80 #define __GNUCLIKE___SECTION 1
81
82 #ifndef __INTEL_COMPILER
83 # define __GNUCLIKE_CTOR_SECTION_HANDLING 1
84 #endif
85
86 #define __GNUCLIKE_BUILTIN_CONSTANT_P 1
87 # if defined(__INTEL_COMPILER) && defined(__cplusplus) \
88     && __INTEL_COMPILER < 800
89 #  undef __GNUCLIKE_BUILTIN_CONSTANT_P
90 # endif
91
92 #if (__GNUC_MINOR__ > 95 || __GNUC__ >= 3) && !defined(__INTEL_COMPILER)
93 # define __GNUCLIKE_BUILTIN_VARARGS 1
94 # define __GNUCLIKE_BUILTIN_STDARG 1
95 # define __GNUCLIKE_BUILTIN_VAALIST 1
96 #endif
97
98 #if defined(__GNUC__)
99 # define __GNUC_VA_LIST_COMPATIBILITY 1
100 #endif
101
102 /*
103  * Compiler memory barriers, specific to gcc and clang.
104  */
105 #if defined(__GNUC__)
106 #define __compiler_membar()     __asm __volatile(" " : : : "memory")
107 #endif
108
109 #ifndef __INTEL_COMPILER
110 # define __GNUCLIKE_BUILTIN_NEXT_ARG 1
111 # define __GNUCLIKE_MATH_BUILTIN_RELOPS
112 #endif
113
114 #define __GNUCLIKE_BUILTIN_MEMCPY 1
115
116 /* XXX: if __GNUC__ >= 2: not tested everywhere originally, where replaced */
117 #define __CC_SUPPORTS_INLINE 1
118 #define __CC_SUPPORTS___INLINE 1
119 #define __CC_SUPPORTS___INLINE__ 1
120
121 #define __CC_SUPPORTS___FUNC__ 1
122 #define __CC_SUPPORTS_WARNING 1
123
124 #define __CC_SUPPORTS_VARADIC_XXX 1 /* see varargs.h */
125
126 #define __CC_SUPPORTS_DYNAMIC_ARRAY_INIT 1
127
128 #endif /* __GNUC__ || __INTEL_COMPILER */
129
130 /*
131  * Macro to test if we're using a specific version of gcc or later.
132  */
133 #if defined(__GNUC__) && !defined(__INTEL_COMPILER)
134 #define __GNUC_PREREQ__(ma, mi) \
135         (__GNUC__ > (ma) || __GNUC__ == (ma) && __GNUC_MINOR__ >= (mi))
136 #else
137 #define __GNUC_PREREQ__(ma, mi) 0
138 #endif
139
140 /*
141  * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
142  * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
143  * The __CONCAT macro is a bit tricky to use if it must work in non-ANSI
144  * mode -- there must be no spaces between its arguments, and for nested
145  * __CONCAT's, all the __CONCAT's must be at the left.  __CONCAT can also
146  * concatenate double-quoted strings produced by the __STRING macro, but
147  * this only works with ANSI C.
148  *
149  * __XSTRING is like __STRING, but it expands any macros in its argument
150  * first.  It is only available with ANSI C.
151  */
152 #if defined(__STDC__) || defined(__cplusplus)
153 #define __P(protos)     protos          /* full-blown ANSI C */
154 #define __CONCAT1(x,y)  x ## y
155 #define __CONCAT(x,y)   __CONCAT1(x,y)
156 #define __STRING(x)     #x              /* stringify without expanding x */
157 #define __XSTRING(x)    __STRING(x)     /* expand x, then stringify */
158
159 #define __const         const           /* define reserved names to standard */
160 #define __signed        signed
161 #define __volatile      volatile
162 #if defined(__cplusplus)
163 #define __inline        inline          /* convert to C++ keyword */
164 #else
165 #if !(defined(__CC_SUPPORTS___INLINE))
166 #define __inline                        /* delete GCC keyword */
167 #endif /* ! __CC_SUPPORTS___INLINE */
168 #endif /* !__cplusplus */
169
170 #else   /* !(__STDC__ || __cplusplus) */
171 #define __P(protos)     ()              /* traditional C preprocessor */
172 #define __CONCAT(x,y)   x/**/y
173 #define __STRING(x)     "x"
174
175 #if !defined(__CC_SUPPORTS___INLINE)
176 #define __const                         /* delete pseudo-ANSI C keywords */
177 #define __inline
178 #define __signed
179 #define __volatile
180 /*
181  * In non-ANSI C environments, new programs will want ANSI-only C keywords
182  * deleted from the program and old programs will want them left alone.
183  * When using a compiler other than gcc, programs using the ANSI C keywords
184  * const, inline etc. as normal identifiers should define -DNO_ANSI_KEYWORDS.
185  * When using "gcc -traditional", we assume that this is the intent; if
186  * __GNUC__ is defined but __STDC__ is not, we leave the new keywords alone.
187  */
188 #ifndef NO_ANSI_KEYWORDS
189 #define const                           /* delete ANSI C keywords */
190 #define inline
191 #define signed
192 #define volatile
193 #endif  /* !NO_ANSI_KEYWORDS */
194 #endif  /* !__CC_SUPPORTS___INLINE */
195 #endif  /* !(__STDC__ || __cplusplus) */
196
197 /*
198  * Compiler-dependent macros to help declare dead (non-returning) and
199  * pure (no side effects) functions, and unused variables.  They are
200  * null except for versions of gcc that are known to support the features
201  * properly (old versions of gcc-2 supported the dead and pure features
202  * in a different (wrong) way).  If we do not provide an implementation
203  * for a given compiler, let the compile fail if it is told to use
204  * a feature that we cannot live without.
205  */
206 #ifdef lint
207 #define __dead2
208 #define __pure2
209 #define __unused
210 #define __packed
211 #define __aligned(x)
212 #define __section(x)
213 #define __weak
214 #else
215 #define __weak          __attribute__((__weak__))
216 #if !__GNUC_PREREQ__(2, 5) && !defined(__INTEL_COMPILER)
217 #define __dead2
218 #define __pure2
219 #define __unused
220 #endif
221 #if __GNUC__ == 2 && __GNUC_MINOR__ >= 5 && __GNUC_MINOR__ < 7 && !defined(__INTEL_COMPILER)
222 #define __dead2         __attribute__((__noreturn__))
223 #define __pure2         __attribute__((__const__))
224 #define __unused
225 /* XXX Find out what to do for __packed, __aligned and __section */
226 #endif
227 #if __GNUC_PREREQ__(2, 7)
228 #define __dead2         __attribute__((__noreturn__))
229 #define __pure2         __attribute__((__const__))
230 #define __unused        __attribute__((__unused__))
231 #define __used          __attribute__((__used__))
232 #define __packed        __attribute__((__packed__))
233 #define __aligned(x)    __attribute__((__aligned__(x)))
234 #define __section(x)    __attribute__((__section__(x)))
235 #endif
236 #if defined(__INTEL_COMPILER)
237 #define __dead2         __attribute__((__noreturn__))
238 #define __pure2         __attribute__((__const__))
239 #define __unused        __attribute__((__unused__))
240 #define __used          __attribute__((__used__))
241 #define __packed        __attribute__((__packed__))
242 #define __aligned(x)    __attribute__((__aligned__(x)))
243 #define __section(x)    __attribute__((__section__(x)))
244 #endif
245 #endif
246
247 #if !__GNUC_PREREQ__(2, 95)
248 #define __alignof(x)    __offsetof(struct { char __a; x __b; }, __b)
249 #endif
250
251 /*
252  * Keywords added in C11.
253  */
254
255 #if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 201112L
256
257 #if !__has_extension(c_alignas)
258 #if (defined(__cplusplus) && __cplusplus >= 201103L) || \
259     __has_extension(cxx_alignas)
260 #define _Alignas(x)             alignas(x)
261 #else
262 /* XXX: Only emulates _Alignas(constant-expression); not _Alignas(type-name). */
263 #define _Alignas(x)             __aligned(x)
264 #endif
265 #endif
266
267 #if defined(__cplusplus) && __cplusplus >= 201103L
268 #define _Alignof(x)             alignof(x)
269 #else
270 #define _Alignof(x)             __alignof(x)
271 #endif
272
273 #if !__has_extension(c_atomic) && !__has_extension(cxx_atomic)
274 /*
275  * No native support for _Atomic(). Place object in structure to prevent
276  * most forms of direct non-atomic access.
277  */
278 #define _Atomic(T)              struct { T volatile __val; }
279 #endif
280
281 #if defined(__cplusplus) && __cplusplus >= 201103L
282 #define _Noreturn               [[noreturn]]
283 #else
284 #define _Noreturn               __dead2
285 #endif
286
287 #if !__has_extension(c_static_assert)
288 #if (defined(__cplusplus) && __cplusplus >= 201103L) || \
289     __has_extension(cxx_static_assert)
290 #define _Static_assert(x, y)    static_assert(x, y)
291 #elif defined(__COUNTER__)
292 #define _Static_assert(x, y)    __Static_assert(x, __COUNTER__)
293 #define __Static_assert(x, y)   ___Static_assert(x, y)
294 #define ___Static_assert(x, y)  typedef char __assert_ ## y[(x) ? 1 : -1]
295 #else
296 #define _Static_assert(x, y)    struct __hack
297 #endif
298 #endif
299
300 #if !__has_extension(c_thread_local)
301 /* XXX: Change this to test against C++11 when clang in base supports it. */
302 #if /* (defined(__cplusplus) && __cplusplus >= 201103L) || */ \
303     __has_extension(cxx_thread_local)
304 #define _Thread_local           thread_local
305 #else
306 #define _Thread_local           __thread
307 #endif
308 #endif
309
310 #endif /* __STDC_VERSION__ || __STDC_VERSION__ < 201112L */
311
312 /*
313  * Emulation of C11 _Generic().  Unlike the previously defined C11
314  * keywords, it is not possible to implement this using exactly the same
315  * syntax.  Therefore implement something similar under the name
316  * __generic().  Unlike _Generic(), this macro can only distinguish
317  * between a single type, so it requires nested invocations to
318  * distinguish multiple cases.
319  */
320
321 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
322 #define __generic(expr, t, yes, no)                                     \
323         _Generic(expr, t: yes, default: no)
324 #elif __GNUC_PREREQ__(3, 1) && !defined(__cplusplus)
325 #define __generic(expr, t, yes, no)                                     \
326         __builtin_choose_expr(                                          \
327             __builtin_types_compatible_p(__typeof(expr), t), yes, no)
328 #endif
329
330 #if __GNUC_PREREQ__(2, 96)
331 #define __malloc_like   __attribute__((__malloc__))
332 #define __pure          __attribute__((__pure__))
333 #else
334 #define __malloc_like
335 #define __pure
336 #endif
337
338 #if __GNUC_PREREQ__(3, 1) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800)
339 #define __always_inline __attribute__((__always_inline__))
340 #else
341 #define __always_inline
342 #endif
343
344 #if __GNUC_PREREQ__(3, 1)
345 #define __noinline      __attribute__ ((__noinline__))
346 #else
347 #define __noinline
348 #endif
349
350 #if __GNUC_PREREQ__(3, 3)
351 #define __nonnull(x)    __attribute__((__nonnull__(x)))
352 #else
353 #define __nonnull(x)
354 #endif
355
356 #if __GNUC_PREREQ__(3, 4)
357 #define __fastcall      __attribute__((__fastcall__))
358 #else
359 #define __fastcall
360 #endif
361
362 #if __GNUC_PREREQ__(4, 1)
363 #define __returns_twice __attribute__((__returns_twice__))
364 #else
365 #define __returns_twice
366 #endif
367
368 /* XXX: should use `#if __STDC_VERSION__ < 199901'. */
369 #if !__GNUC_PREREQ__(2, 7) && !defined(__INTEL_COMPILER)
370 #define __func__        NULL
371 #endif
372
373 #if (defined(__INTEL_COMPILER) || (defined(__GNUC__) && __GNUC__ >= 2)) && !defined(__STRICT_ANSI__) || __STDC_VERSION__ >= 199901
374 #define __LONG_LONG_SUPPORTED
375 #endif
376
377 /* C++11 exposes a load of C99 stuff */
378 #if defined(__cplusplus) && __cplusplus >= 201103L
379 #define __LONG_LONG_SUPPORTED
380 #ifndef __STDC_LIMIT_MACROS
381 #define __STDC_LIMIT_MACROS
382 #endif
383 #ifndef __STDC_CONSTANT_MACROS
384 #define __STDC_CONSTANT_MACROS
385 #endif
386 #endif
387
388 /*
389  * GCC 2.95 provides `__restrict' as an extension to C90 to support the
390  * C99-specific `restrict' type qualifier.  We happen to use `__restrict' as
391  * a way to define the `restrict' type qualifier without disturbing older
392  * software that is unaware of C99 keywords.
393  */
394 #if !(__GNUC__ == 2 && __GNUC_MINOR__ == 95)
395 #if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901 || defined(lint)
396 #define __restrict
397 #else
398 #define __restrict      restrict
399 #endif
400 #endif
401
402 /*
403  * GNU C version 2.96 adds explicit branch prediction so that
404  * the CPU back-end can hint the processor and also so that
405  * code blocks can be reordered such that the predicted path
406  * sees a more linear flow, thus improving cache behavior, etc.
407  *
408  * The following two macros provide us with a way to utilize this
409  * compiler feature.  Use __predict_true() if you expect the expression
410  * to evaluate to true, and __predict_false() if you expect the
411  * expression to evaluate to false.
412  *
413  * A few notes about usage:
414  *
415  *      * Generally, __predict_false() error condition checks (unless
416  *        you have some _strong_ reason to do otherwise, in which case
417  *        document it), and/or __predict_true() `no-error' condition
418  *        checks, assuming you want to optimize for the no-error case.
419  *
420  *      * Other than that, if you don't know the likelihood of a test
421  *        succeeding from empirical or other `hard' evidence, don't
422  *        make predictions.
423  *
424  *      * These are meant to be used in places that are run `a lot'.
425  *        It is wasteful to make predictions in code that is run
426  *        seldomly (e.g. at subsystem initialization time) as the
427  *        basic block reordering that this affects can often generate
428  *        larger code.
429  */
430 #if __GNUC_PREREQ__(2, 96)
431 #define __predict_true(exp)     __builtin_expect((exp), 1)
432 #define __predict_false(exp)    __builtin_expect((exp), 0)
433 #else
434 #define __predict_true(exp)     (exp)
435 #define __predict_false(exp)    (exp)
436 #endif
437
438 #if __GNUC_PREREQ__(4, 2)
439 #define __hidden        __attribute__((__visibility__("hidden")))
440 #define __exported      __attribute__((__visibility__("default")))
441 #else
442 #define __hidden
443 #define __exported
444 #endif
445
446 /*
447  * We define this here since <stddef.h>, <sys/queue.h>, and <sys/types.h>
448  * require it.
449  */
450 #if __GNUC_PREREQ__(4, 1)
451 #define __offsetof(type, field)  __builtin_offsetof(type, field)
452 #else
453 #ifndef __cplusplus
454 #define __offsetof(type, field) \
455         ((__size_t)(__uintptr_t)((const volatile void *)&((type *)0)->field))
456 #else
457 #define __offsetof(type, field)                                 \
458   (__offsetof__ (reinterpret_cast <__size_t>                    \
459                  (&reinterpret_cast <const volatile char &>     \
460                   (static_cast<type *> (0)->field))))
461 #endif
462 #endif
463 #define __rangeof(type, start, end) \
464         (__offsetof(type, end) - __offsetof(type, start))
465
466 /*
467  * Given the pointer x to the member m of the struct s, return
468  * a pointer to the containing structure.  When using GCC, we first
469  * assign pointer x to a local variable, to check that its type is
470  * compatible with member m.
471  */
472 #if __GNUC_PREREQ__(3, 1)
473 #define __containerof(x, s, m) ({                                       \
474         const volatile __typeof(((s *)0)->m) *__x = (x);                \
475         __DEQUALIFY(s *, (const volatile char *)__x - __offsetof(s, m));\
476 })
477 #else
478 #define __containerof(x, s, m)                                          \
479         __DEQUALIFY(s *, (const volatile char *)(x) - __offsetof(s, m))
480 #endif
481
482 /*
483  * Compiler-dependent macros to declare that functions take printf-like
484  * or scanf-like arguments.  They are null except for versions of gcc
485  * that are known to support the features properly (old versions of gcc-2
486  * didn't permit keeping the keywords out of the application namespace).
487  */
488 #if !__GNUC_PREREQ__(2, 7) && !defined(__INTEL_COMPILER)
489 #define __printflike(fmtarg, firstvararg)
490 #define __scanflike(fmtarg, firstvararg)
491 #define __format_arg(fmtarg)
492 #define __strfmonlike(fmtarg, firstvararg)
493 #define __strftimelike(fmtarg, firstvararg)
494 #else
495 #define __printflike(fmtarg, firstvararg) \
496             __attribute__((__format__ (__printf__, fmtarg, firstvararg)))
497 #define __scanflike(fmtarg, firstvararg) \
498             __attribute__((__format__ (__scanf__, fmtarg, firstvararg)))
499 #define __format_arg(fmtarg)    __attribute__((__format_arg__ (fmtarg)))
500 #define __strfmonlike(fmtarg, firstvararg) \
501             __attribute__((__format__ (__strfmon__, fmtarg, firstvararg)))
502 #define __strftimelike(fmtarg, firstvararg) \
503             __attribute__((__format__ (__strftime__, fmtarg, firstvararg)))
504 #endif
505
506 /* Compiler-dependent macros that rely on FreeBSD-specific extensions. */
507 #if defined(__FreeBSD_cc_version) && __FreeBSD_cc_version >= 300001 && \
508     defined(__GNUC__) && !defined(__INTEL_COMPILER)
509 #define __printf0like(fmtarg, firstvararg) \
510             __attribute__((__format__ (__printf0__, fmtarg, firstvararg)))
511 #else
512 #define __printf0like(fmtarg, firstvararg)
513 #endif
514
515 #if defined(__GNUC__) || defined(__INTEL_COMPILER)
516 #ifndef __INTEL_COMPILER
517 #define __strong_reference(sym,aliassym)        \
518         extern __typeof (sym) aliassym __attribute__ ((__alias__ (#sym)))
519 #endif
520 #ifdef __STDC__
521 #define __weak_reference(sym,alias)     \
522         __asm__(".weak " #alias);       \
523         __asm__(".equ "  #alias ", " #sym)
524 #define __warn_references(sym,msg)      \
525         __asm__(".section .gnu.warning." #sym); \
526         __asm__(".asciz \"" msg "\"");  \
527         __asm__(".previous")
528 #define __sym_compat(sym,impl,verid)    \
529         __asm__(".symver " #impl ", " #sym "@" #verid)
530 #define __sym_default(sym,impl,verid)   \
531         __asm__(".symver " #impl ", " #sym "@@" #verid)
532 #else
533 #define __weak_reference(sym,alias)     \
534         __asm__(".weak alias");         \
535         __asm__(".equ alias, sym")
536 #define __warn_references(sym,msg)      \
537         __asm__(".section .gnu.warning.sym"); \
538         __asm__(".asciz \"msg\"");      \
539         __asm__(".previous")
540 #define __sym_compat(sym,impl,verid)    \
541         __asm__(".symver impl, sym@verid")
542 #define __sym_default(impl,sym,verid)   \
543         __asm__(".symver impl, sym@@verid")
544 #endif  /* __STDC__ */
545 #endif  /* __GNUC__ || __INTEL_COMPILER */
546
547 #define __GLOBL1(sym)   __asm__(".globl " #sym)
548 #define __GLOBL(sym)    __GLOBL1(sym)
549
550 #if defined(__GNUC__) || defined(__INTEL_COMPILER)
551 #define __IDSTRING(name,string) __asm__(".ident\t\"" string "\"")
552 #else
553 /*
554  * The following definition might not work well if used in header files,
555  * but it should be better than nothing.  If you want a "do nothing"
556  * version, then it should generate some harmless declaration, such as:
557  *    #define __IDSTRING(name,string)   struct __hack
558  */
559 #define __IDSTRING(name,string) static const char name[] __unused = string
560 #endif
561
562 /*
563  * Embed the rcs id of a source file in the resulting library.  Note that in
564  * more recent ELF binutils, we use .ident allowing the ID to be stripped.
565  * Usage:
566  *      __FBSDID("$FreeBSD$");
567  */
568 #ifndef __FBSDID
569 #if !defined(lint) && !defined(STRIP_FBSDID)
570 #define __FBSDID(s)     __IDSTRING(__CONCAT(__rcsid_,__LINE__),s)
571 #else
572 #define __FBSDID(s)     struct __hack
573 #endif
574 #endif
575
576 #ifndef __RCSID
577 #ifndef NO__RCSID
578 #define __RCSID(s)      __IDSTRING(__CONCAT(__rcsid_,__LINE__),s)
579 #else
580 #define __RCSID(s)      struct __hack
581 #endif
582 #endif
583
584 #ifndef __RCSID_SOURCE
585 #ifndef NO__RCSID_SOURCE
586 #define __RCSID_SOURCE(s)       __IDSTRING(__CONCAT(__rcsid_source_,__LINE__),s)
587 #else
588 #define __RCSID_SOURCE(s)       struct __hack
589 #endif
590 #endif
591
592 #ifndef __SCCSID
593 #ifndef NO__SCCSID
594 #define __SCCSID(s)     __IDSTRING(__CONCAT(__sccsid_,__LINE__),s)
595 #else
596 #define __SCCSID(s)     struct __hack
597 #endif
598 #endif
599
600 #ifndef __COPYRIGHT
601 #ifndef NO__COPYRIGHT
602 #define __COPYRIGHT(s)  __IDSTRING(__CONCAT(__copyright_,__LINE__),s)
603 #else
604 #define __COPYRIGHT(s)  struct __hack
605 #endif
606 #endif
607
608 #ifndef __DECONST
609 #define __DECONST(type, var)    ((type)(__uintptr_t)(const void *)(var))
610 #endif
611
612 #ifndef __DEVOLATILE
613 #define __DEVOLATILE(type, var) ((type)(__uintptr_t)(volatile void *)(var))
614 #endif
615
616 #ifndef __DEQUALIFY
617 #define __DEQUALIFY(type, var)  ((type)(__uintptr_t)(const volatile void *)(var))
618 #endif
619
620 /*-
621  * The following definitions are an extension of the behavior originally
622  * implemented in <sys/_posix.h>, but with a different level of granularity.
623  * POSIX.1 requires that the macros we test be defined before any standard
624  * header file is included.
625  *
626  * Here's a quick run-down of the versions:
627  *  defined(_POSIX_SOURCE)              1003.1-1988
628  *  _POSIX_C_SOURCE == 1                1003.1-1990
629  *  _POSIX_C_SOURCE == 2                1003.2-1992 C Language Binding Option
630  *  _POSIX_C_SOURCE == 199309           1003.1b-1993
631  *  _POSIX_C_SOURCE == 199506           1003.1c-1995, 1003.1i-1995,
632  *                                      and the omnibus ISO/IEC 9945-1: 1996
633  *  _POSIX_C_SOURCE == 200112           1003.1-2001
634  *  _POSIX_C_SOURCE == 200809           1003.1-2008
635  *
636  * In addition, the X/Open Portability Guide, which is now the Single UNIX
637  * Specification, defines a feature-test macro which indicates the version of
638  * that specification, and which subsumes _POSIX_C_SOURCE.
639  *
640  * Our macros begin with two underscores to avoid namespace screwage.
641  */
642
643 /* Deal with IEEE Std. 1003.1-1990, in which _POSIX_C_SOURCE == 1. */
644 #if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE == 1
645 #undef _POSIX_C_SOURCE          /* Probably illegal, but beyond caring now. */
646 #define _POSIX_C_SOURCE         199009
647 #endif
648
649 /* Deal with IEEE Std. 1003.2-1992, in which _POSIX_C_SOURCE == 2. */
650 #if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE == 2
651 #undef _POSIX_C_SOURCE
652 #define _POSIX_C_SOURCE         199209
653 #endif
654
655 /* Deal with various X/Open Portability Guides and Single UNIX Spec. */
656 #ifdef _XOPEN_SOURCE
657 #if _XOPEN_SOURCE - 0 >= 700
658 #define __XSI_VISIBLE           700
659 #undef _POSIX_C_SOURCE
660 #define _POSIX_C_SOURCE         200809
661 #elif _XOPEN_SOURCE - 0 >= 600
662 #define __XSI_VISIBLE           600
663 #undef _POSIX_C_SOURCE
664 #define _POSIX_C_SOURCE         200112
665 #elif _XOPEN_SOURCE - 0 >= 500
666 #define __XSI_VISIBLE           500
667 #undef _POSIX_C_SOURCE
668 #define _POSIX_C_SOURCE         199506
669 #endif
670 #endif
671
672 /*
673  * Deal with all versions of POSIX.  The ordering relative to the tests above is
674  * important.
675  */
676 #if defined(_POSIX_SOURCE) && !defined(_POSIX_C_SOURCE)
677 #define _POSIX_C_SOURCE         198808
678 #endif
679 #ifdef _POSIX_C_SOURCE
680 #if _POSIX_C_SOURCE >= 200809
681 #define __POSIX_VISIBLE         200809
682 #define __ISO_C_VISIBLE         1999
683 #elif _POSIX_C_SOURCE >= 200112
684 #define __POSIX_VISIBLE         200112
685 #define __ISO_C_VISIBLE         1999
686 #elif _POSIX_C_SOURCE >= 199506
687 #define __POSIX_VISIBLE         199506
688 #define __ISO_C_VISIBLE         1990
689 #elif _POSIX_C_SOURCE >= 199309
690 #define __POSIX_VISIBLE         199309
691 #define __ISO_C_VISIBLE         1990
692 #elif _POSIX_C_SOURCE >= 199209
693 #define __POSIX_VISIBLE         199209
694 #define __ISO_C_VISIBLE         1990
695 #elif _POSIX_C_SOURCE >= 199009
696 #define __POSIX_VISIBLE         199009
697 #define __ISO_C_VISIBLE         1990
698 #else
699 #define __POSIX_VISIBLE         198808
700 #define __ISO_C_VISIBLE         0
701 #endif /* _POSIX_C_SOURCE */
702 #else
703 /*-
704  * Deal with _ANSI_SOURCE:
705  * If it is defined, and no other compilation environment is explicitly
706  * requested, then define our internal feature-test macros to zero.  This
707  * makes no difference to the preprocessor (undefined symbols in preprocessing
708  * expressions are defined to have value zero), but makes it more convenient for
709  * a test program to print out the values.
710  *
711  * If a program mistakenly defines _ANSI_SOURCE and some other macro such as
712  * _POSIX_C_SOURCE, we will assume that it wants the broader compilation
713  * environment (and in fact we will never get here).
714  */
715 #if defined(_ANSI_SOURCE)       /* Hide almost everything. */
716 #define __POSIX_VISIBLE         0
717 #define __XSI_VISIBLE           0
718 #define __BSD_VISIBLE           0
719 #define __ISO_C_VISIBLE         1990
720 #elif defined(_C99_SOURCE)      /* Localism to specify strict C99 env. */
721 #define __POSIX_VISIBLE         0
722 #define __XSI_VISIBLE           0
723 #define __BSD_VISIBLE           0
724 #define __ISO_C_VISIBLE         1999
725 #elif defined(_C11_SOURCE)      /* Localism to specify strict C11 env. */
726 #define __POSIX_VISIBLE         0
727 #define __XSI_VISIBLE           0
728 #define __BSD_VISIBLE           0
729 #define __ISO_C_VISIBLE         2011
730 #else                           /* Default environment: show everything. */
731 #define __POSIX_VISIBLE         200809
732 #define __XSI_VISIBLE           700
733 #define __BSD_VISIBLE           1
734 #define __ISO_C_VISIBLE         2011
735 #endif
736 #endif
737
738 #if defined(__mips) || defined(__powerpc64__)
739 #define __NO_TLS 1
740 #endif
741
742 #endif /* !_SYS_CDEFS_H_ */