2006-05-20 00:59:19 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-01-23 04:25:11 +05:30
|
|
|
/*
|
2008-09-25 17:43:34 +05:30
|
|
|
Copyright 2006, Bernhard Reutner-Fischer
|
2006-01-23 04:25:11 +05:30
|
|
|
|
|
|
|
Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
|
|
|
*/
|
2009-04-09 18:05:13 +05:30
|
|
|
#ifndef BB_PLATFORM_H
|
|
|
|
#define BB_PLATFORM_H 1
|
2006-01-23 04:25:11 +05:30
|
|
|
|
|
|
|
/* Convenience macros to test the version of gcc. */
|
|
|
|
#undef __GNUC_PREREQ
|
|
|
|
#if defined __GNUC__ && defined __GNUC_MINOR__
|
|
|
|
# define __GNUC_PREREQ(maj, min) \
|
2006-09-17 21:58:10 +05:30
|
|
|
((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
|
2006-01-23 04:25:11 +05:30
|
|
|
#else
|
|
|
|
# define __GNUC_PREREQ(maj, min) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* __restrict is known in EGCS 1.2 and above. */
|
2008-05-09 23:29:34 +05:30
|
|
|
#if !__GNUC_PREREQ(2,92)
|
2006-01-23 04:25:11 +05:30
|
|
|
# ifndef __restrict
|
2009-05-19 16:48:45 +05:30
|
|
|
# define __restrict
|
2006-01-23 04:25:11 +05:30
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define macros for some gcc attributes. This permits us to use the
|
|
|
|
macros freely, and know that they will come into play for the
|
|
|
|
version of gcc in which they are supported. */
|
|
|
|
|
2008-05-09 23:29:34 +05:30
|
|
|
#if !__GNUC_PREREQ(2,7)
|
2006-01-23 04:25:11 +05:30
|
|
|
# ifndef __attribute__
|
|
|
|
# define __attribute__(x)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2006-05-26 18:40:10 +05:30
|
|
|
#undef inline
|
2006-11-18 01:59:00 +05:30
|
|
|
#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
|
2006-05-26 18:40:10 +05:30
|
|
|
/* it's a keyword */
|
2009-07-05 07:04:12 +05:30
|
|
|
#elif __GNUC_PREREQ(2,7)
|
|
|
|
# define inline __inline__
|
2006-05-26 18:40:10 +05:30
|
|
|
#else
|
2009-07-05 07:04:12 +05:30
|
|
|
# define inline
|
2006-05-26 18:40:10 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __const
|
|
|
|
# define __const const
|
|
|
|
#endif
|
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
#define UNUSED_PARAM __attribute__ ((__unused__))
|
|
|
|
#define NORETURN __attribute__ ((__noreturn__))
|
|
|
|
#define PACKED __attribute__ ((__packed__))
|
|
|
|
#define ALIGNED(m) __attribute__ ((__aligned__(m)))
|
2009-07-05 07:04:12 +05:30
|
|
|
|
2008-03-20 18:43:09 +05:30
|
|
|
/* __NO_INLINE__: some gcc's do not honor inlining! :( */
|
2008-05-09 23:29:34 +05:30
|
|
|
#if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__)
|
|
|
|
# define ALWAYS_INLINE __attribute__ ((always_inline)) inline
|
2007-10-13 09:06:03 +05:30
|
|
|
/* I've seen a toolchain where I needed __noinline__ instead of noinline */
|
2008-05-09 23:29:34 +05:30
|
|
|
# define NOINLINE __attribute__((__noinline__))
|
|
|
|
# if !ENABLE_WERROR
|
2008-07-05 14:48:54 +05:30
|
|
|
# define DEPRECATED __attribute__ ((__deprecated__))
|
|
|
|
# define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result))
|
2006-05-26 18:40:10 +05:30
|
|
|
# else
|
2009-05-19 16:48:45 +05:30
|
|
|
# define DEPRECATED
|
|
|
|
# define UNUSED_PARAM_RESULT
|
2006-05-26 18:40:10 +05:30
|
|
|
# endif
|
2008-05-09 23:29:34 +05:30
|
|
|
#else
|
2009-05-19 16:48:45 +05:30
|
|
|
# define ALWAYS_INLINE inline
|
|
|
|
# define NOINLINE
|
|
|
|
# define DEPRECATED
|
|
|
|
# define UNUSED_PARAM_RESULT
|
2008-05-09 23:29:34 +05:30
|
|
|
#endif
|
2006-05-26 18:40:10 +05:30
|
|
|
|
2006-01-23 04:25:11 +05:30
|
|
|
/* -fwhole-program makes all symbols local. The attribute externally_visible
|
|
|
|
forces a symbol global. */
|
2008-05-09 23:29:34 +05:30
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ))
|
2007-10-11 15:35:36 +05:30
|
|
|
//__attribute__ ((__externally_visible__))
|
2008-05-09 23:29:34 +05:30
|
|
|
#else
|
|
|
|
# define EXTERNALLY_VISIBLE
|
2008-12-03 16:16:12 +05:30
|
|
|
#endif
|
2006-01-23 04:25:11 +05:30
|
|
|
|
|
|
|
/* We use __extension__ in some places to suppress -pedantic warnings
|
|
|
|
about GCC extensions. This feature didn't work properly before
|
|
|
|
gcc 2.8. */
|
2008-05-09 23:29:34 +05:30
|
|
|
#if !__GNUC_PREREQ(2,8)
|
2006-01-23 04:25:11 +05:30
|
|
|
# ifndef __extension__
|
|
|
|
# define __extension__
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2006-09-12 18:57:55 +05:30
|
|
|
/* gcc-2.95 had no va_copy but only __va_copy. */
|
2008-05-09 23:29:34 +05:30
|
|
|
#if !__GNUC_PREREQ(3,0)
|
2006-09-12 18:57:55 +05:30
|
|
|
# include <stdarg.h>
|
|
|
|
# if !defined va_copy && defined __va_copy
|
|
|
|
# define va_copy(d,s) __va_copy((d),(s))
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2008-06-27 09:25:18 +05:30
|
|
|
/* FAST_FUNC is a qualifier which (possibly) makes function call faster
|
|
|
|
* and/or smaller by using modified ABI. It is usually only needed
|
|
|
|
* on non-static, busybox internal functions. Recent versions of gcc
|
|
|
|
* optimize statics automatically. FAST_FUNC on static is required
|
|
|
|
* only if you need to match a function pointer's type */
|
2008-06-27 10:00:48 +05:30
|
|
|
#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
|
|
|
|
/* stdcall makes callee to pop arguments from stack, not caller */
|
|
|
|
# define FAST_FUNC __attribute__((regparm(3),stdcall))
|
2008-06-27 09:25:18 +05:30
|
|
|
/* #elif ... - add your favorite arch today! */
|
2008-06-27 08:22:20 +05:30
|
|
|
#else
|
|
|
|
# define FAST_FUNC
|
|
|
|
#endif
|
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
/* Make all declarations hidden (-fvisibility flag only affects definitions) */
|
|
|
|
/* (don't include system headers after this until corresponding pop!) */
|
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)")
|
|
|
|
# define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop")
|
|
|
|
#else
|
|
|
|
# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
|
|
|
# define POP_SAVED_FUNCTION_VISIBILITY
|
|
|
|
#endif
|
|
|
|
|
2006-02-21 12:14:43 +05:30
|
|
|
/* ---- Endian Detection ------------------------------------ */
|
|
|
|
|
2009-07-05 07:04:12 +05:30
|
|
|
#if defined(__digital__) && defined(__unix__)
|
2006-05-26 18:40:10 +05:30
|
|
|
# include <sex.h>
|
|
|
|
# define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
|
|
|
|
# define __BYTE_ORDER BYTE_ORDER
|
2009-07-05 07:04:12 +05:30
|
|
|
#elif defined __FreeBSD__
|
|
|
|
char *strchrnul(const char *s, int c);
|
|
|
|
# include <sys/resource.h> /* rlimit */
|
|
|
|
# include <machine/endian.h>
|
|
|
|
# define bswap_64 __bswap64
|
|
|
|
# define bswap_32 __bswap32
|
|
|
|
# define bswap_16 __bswap16
|
|
|
|
# define __BIG_ENDIAN__ (_BYTE_ORDER == _BIG_ENDIAN)
|
2006-05-29 10:30:44 +05:30
|
|
|
#elif !defined __APPLE__
|
|
|
|
# include <byteswap.h>
|
|
|
|
# include <endian.h>
|
2006-05-26 18:40:10 +05:30
|
|
|
#endif
|
|
|
|
|
2009-07-05 07:04:12 +05:30
|
|
|
#if defined(__BIG_ENDIAN__) && __BIG_ENDIAN__
|
2006-03-28 08:05:56 +05:30
|
|
|
# define BB_BIG_ENDIAN 1
|
|
|
|
# define BB_LITTLE_ENDIAN 0
|
2006-02-21 12:14:43 +05:30
|
|
|
#elif __BYTE_ORDER == __BIG_ENDIAN
|
2006-03-28 08:05:56 +05:30
|
|
|
# define BB_BIG_ENDIAN 1
|
|
|
|
# define BB_LITTLE_ENDIAN 0
|
2009-07-05 07:04:12 +05:30
|
|
|
#elif __BYTE_ORDER == __LITTLE_ENDIAN
|
2006-03-28 08:05:56 +05:30
|
|
|
# define BB_BIG_ENDIAN 0
|
|
|
|
# define BB_LITTLE_ENDIAN 1
|
2009-07-05 07:04:12 +05:30
|
|
|
#else
|
|
|
|
# error "Can't determine endiannes"
|
2006-02-21 12:14:43 +05:30
|
|
|
#endif
|
|
|
|
|
2008-11-01 19:10:32 +05:30
|
|
|
/* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */
|
2006-05-29 11:21:12 +05:30
|
|
|
#if BB_BIG_ENDIAN
|
2009-05-19 16:48:45 +05:30
|
|
|
# define SWAP_BE16(x) (x)
|
|
|
|
# define SWAP_BE32(x) (x)
|
|
|
|
# define SWAP_BE64(x) (x)
|
|
|
|
# define SWAP_LE16(x) bswap_16(x)
|
|
|
|
# define SWAP_LE32(x) bswap_32(x)
|
|
|
|
# define SWAP_LE64(x) bswap_64(x)
|
2006-05-29 11:21:12 +05:30
|
|
|
#else
|
2009-05-19 16:48:45 +05:30
|
|
|
# define SWAP_BE16(x) bswap_16(x)
|
|
|
|
# define SWAP_BE32(x) bswap_32(x)
|
|
|
|
# define SWAP_BE64(x) bswap_64(x)
|
|
|
|
# define SWAP_LE16(x) (x)
|
|
|
|
# define SWAP_LE32(x) (x)
|
|
|
|
# define SWAP_LE64(x) (x)
|
2006-05-29 11:21:12 +05:30
|
|
|
#endif
|
|
|
|
|
2008-05-26 23:02:35 +05:30
|
|
|
/* ---- Unaligned access ------------------------------------ */
|
|
|
|
|
2008-12-09 04:26:18 +05:30
|
|
|
/* NB: unaligned parameter should be a pointer, aligned one -
|
|
|
|
* a lvalue. This makes it more likely to not swap them by mistake
|
|
|
|
*/
|
2008-06-27 09:25:18 +05:30
|
|
|
#if defined(i386) || defined(__x86_64__)
|
2009-05-19 16:48:45 +05:30
|
|
|
# define move_from_unaligned16(v, u16p) ((v) = *(uint16_t*)(u16p))
|
|
|
|
# define move_from_unaligned32(v, u32p) ((v) = *(uint32_t*)(u32p))
|
|
|
|
# define move_to_unaligned32(u32p, v) (*(uint32_t*)(u32p) = (v))
|
2008-06-27 09:25:18 +05:30
|
|
|
/* #elif ... - add your favorite arch today! */
|
2008-05-26 23:02:35 +05:30
|
|
|
#else
|
|
|
|
/* performs reasonably well (gcc usually inlines memcpy here) */
|
2009-05-19 16:48:45 +05:30
|
|
|
# define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
|
|
|
|
# define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
|
|
|
|
# define move_to_unaligned32(u32p, v) do { \
|
2009-04-18 03:50:44 +05:30
|
|
|
uint32_t __t = (v); \
|
|
|
|
memcpy((u32p), &__t, 4); \
|
|
|
|
} while (0)
|
2008-05-26 23:02:35 +05:30
|
|
|
#endif
|
|
|
|
|
2006-03-10 04:09:08 +05:30
|
|
|
/* ---- Networking ------------------------------------------ */
|
2008-05-26 23:02:35 +05:30
|
|
|
|
2006-03-10 04:09:08 +05:30
|
|
|
#ifndef __APPLE__
|
2006-03-28 08:05:56 +05:30
|
|
|
# include <arpa/inet.h>
|
2009-07-05 07:04:12 +05:30
|
|
|
# if !defined(__socklen_t_defined) && !defined(_SOCKLEN_T_DECLARED)
|
2008-02-08 04:11:33 +05:30
|
|
|
typedef int socklen_t;
|
|
|
|
# endif
|
2006-03-10 04:09:08 +05:30
|
|
|
#else
|
2006-03-28 08:05:56 +05:30
|
|
|
# include <netinet/in.h>
|
2006-03-10 04:09:08 +05:30
|
|
|
#endif
|
|
|
|
|
2006-05-26 18:40:10 +05:30
|
|
|
/* ---- Compiler dependent settings ------------------------- */
|
2008-05-26 23:02:35 +05:30
|
|
|
|
2009-07-05 07:04:12 +05:30
|
|
|
#if (defined __digital__ && defined __unix__) \
|
|
|
|
|| defined __APPLE__ || defined __FreeBSD__
|
2006-05-26 18:40:10 +05:30
|
|
|
# undef HAVE_MNTENT_H
|
2008-02-08 04:11:33 +05:30
|
|
|
# undef HAVE_SYS_STATFS_H
|
2006-05-26 18:40:10 +05:30
|
|
|
#else
|
|
|
|
# define HAVE_MNTENT_H 1
|
2008-02-08 04:11:33 +05:30
|
|
|
# define HAVE_SYS_STATFS_H 1
|
2008-01-29 16:03:34 +05:30
|
|
|
#endif
|
2007-03-19 20:45:06 +05:30
|
|
|
|
2006-05-19 17:24:02 +05:30
|
|
|
/*----- Kernel versioning ------------------------------------*/
|
2008-05-26 23:02:35 +05:30
|
|
|
|
2006-05-19 17:24:02 +05:30
|
|
|
#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
|
|
|
|
|
2008-05-26 23:02:35 +05:30
|
|
|
/* ---- Miscellaneous --------------------------------------- */
|
2006-05-26 18:40:10 +05:30
|
|
|
|
2006-06-06 11:30:20 +05:30
|
|
|
#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
|
2006-05-26 18:40:10 +05:30
|
|
|
!defined(__dietlibc__) && \
|
|
|
|
!defined(_NEWLIB_VERSION) && \
|
|
|
|
!(defined __digital__ && defined __unix__)
|
2006-06-06 11:30:20 +05:30
|
|
|
# error "Sorry, this libc version is not supported :("
|
2006-05-26 18:40:10 +05:30
|
|
|
#endif
|
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
/* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */
|
2006-06-13 23:58:33 +05:30
|
|
|
|
2006-05-26 18:40:10 +05:30
|
|
|
#if defined __GLIBC__ || defined __UCLIBC__ \
|
2009-07-05 07:04:12 +05:30
|
|
|
|| defined __dietlibc__ || defined _NEWLIB_VERSION
|
2009-05-19 16:48:45 +05:30
|
|
|
# include <features.h>
|
|
|
|
# define HAVE_FEATURES_H
|
|
|
|
# include <stdint.h>
|
|
|
|
# define HAVE_STDINT_H
|
2008-02-08 04:11:33 +05:30
|
|
|
#elif !defined __APPLE__
|
2009-07-05 07:04:12 +05:30
|
|
|
/* Largest integral types. */
|
|
|
|
# if BB_BIG_ENDIAN
|
|
|
|
/* Looks BROKEN! */
|
2007-04-14 04:52:00 +05:30
|
|
|
typedef long intmax_t;
|
|
|
|
typedef unsigned long uintmax_t;
|
2009-05-19 16:48:45 +05:30
|
|
|
# else
|
2006-05-26 18:40:10 +05:30
|
|
|
__extension__
|
2007-04-14 04:52:00 +05:30
|
|
|
typedef long long intmax_t;
|
2006-05-26 18:40:10 +05:30
|
|
|
__extension__
|
2007-04-14 04:52:00 +05:30
|
|
|
typedef unsigned long long uintmax_t;
|
2009-05-19 16:48:45 +05:30
|
|
|
# endif
|
2006-05-26 18:40:10 +05:30
|
|
|
#endif
|
|
|
|
|
2007-01-18 16:02:09 +05:30
|
|
|
/* Size-saving "small" ints (arch-dependent) */
|
|
|
|
#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
|
|
|
|
/* add other arches which benefit from this... */
|
|
|
|
typedef signed char smallint;
|
|
|
|
typedef unsigned char smalluint;
|
|
|
|
#else
|
|
|
|
/* for arches where byte accesses generate larger code: */
|
|
|
|
typedef int smallint;
|
|
|
|
typedef unsigned smalluint;
|
|
|
|
#endif
|
|
|
|
|
2007-01-21 02:57:18 +05:30
|
|
|
/* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
|
|
|
|
#if (defined __digital__ && defined __unix__)
|
|
|
|
/* old system without (proper) C99 support */
|
2009-05-19 16:48:45 +05:30
|
|
|
# define bool smalluint
|
2007-01-21 02:57:18 +05:30
|
|
|
#else
|
|
|
|
/* modern system, so use it */
|
2009-05-19 16:48:45 +05:30
|
|
|
# include <stdbool.h>
|
2007-01-21 02:57:18 +05:30
|
|
|
#endif
|
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
/* Try to defeat gcc's alignment of "char message[]"-like data */
|
|
|
|
#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
|
2009-05-19 16:48:45 +05:30
|
|
|
# define ALIGN1 __attribute__((aligned(1)))
|
|
|
|
# define ALIGN2 __attribute__((aligned(2)))
|
2007-08-13 02:28:27 +05:30
|
|
|
#else
|
|
|
|
/* Arches which MUST have 2 or 4 byte alignment for everything are here */
|
2009-05-19 16:48:45 +05:30
|
|
|
# define ALIGN1
|
|
|
|
# define ALIGN2
|
2007-08-13 02:28:27 +05:30
|
|
|
#endif
|
|
|
|
|
2007-01-21 02:57:18 +05:30
|
|
|
|
2006-07-21 01:01:07 +05:30
|
|
|
/* uclibc does not implement daemon() for no-mmu systems.
|
2006-05-31 15:34:03 +05:30
|
|
|
* For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
|
|
|
|
* For earlier versions there is no reliable way to check if we are building
|
2008-01-24 07:03:42 +05:30
|
|
|
* for a mmu-less system.
|
2006-05-31 15:34:03 +05:30
|
|
|
*/
|
2008-01-09 02:02:12 +05:30
|
|
|
#if ENABLE_NOMMU || \
|
|
|
|
(defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
|
|
|
|
__UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
|
2009-05-19 16:48:45 +05:30
|
|
|
# define BB_MMU 0
|
|
|
|
# define USE_FOR_NOMMU(...) __VA_ARGS__
|
|
|
|
# define USE_FOR_MMU(...)
|
2007-04-11 12:34:23 +05:30
|
|
|
#else
|
2009-05-19 16:48:45 +05:30
|
|
|
# define BB_MMU 1
|
|
|
|
# define USE_FOR_NOMMU(...)
|
|
|
|
# define USE_FOR_MMU(...) __VA_ARGS__
|
2006-05-31 15:34:03 +05:30
|
|
|
#endif
|
|
|
|
|
2006-06-13 23:58:33 +05:30
|
|
|
/* Platforms that haven't got dprintf need to implement fdprintf() in
|
|
|
|
* libbb. This would require a platform.c. It's not going to be cleaned
|
|
|
|
* out of the tree, so stop saying it should be. */
|
2006-12-19 04:02:45 +05:30
|
|
|
#if !defined(__dietlibc__)
|
|
|
|
/* Needed for: glibc */
|
|
|
|
/* Not needed for: dietlibc */
|
|
|
|
/* Others: ?? (add as needed) */
|
2009-05-19 16:48:45 +05:30
|
|
|
# define fdprintf dprintf
|
2006-12-19 04:02:45 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__dietlibc__)
|
2007-06-13 02:24:54 +05:30
|
|
|
static ALWAYS_INLINE char* strchrnul(const char *s, char c)
|
2007-04-17 04:02:04 +05:30
|
|
|
{
|
2006-12-19 04:02:45 +05:30
|
|
|
while (*s && *s != c) ++s;
|
|
|
|
return (char*)s;
|
|
|
|
}
|
2006-12-19 03:40:24 +05:30
|
|
|
#endif
|
2006-05-21 23:58:13 +05:30
|
|
|
|
2009-07-05 07:04:12 +05:30
|
|
|
/* Don't use lchown with glibc older than 2.1.x */
|
|
|
|
#if defined(__GLIBC__) && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1
|
2006-07-21 01:01:07 +05:30
|
|
|
# define lchown chown
|
|
|
|
#endif
|
|
|
|
|
2009-07-05 07:04:12 +05:30
|
|
|
#if defined(__digital__) && defined(__unix__)
|
2006-06-13 23:58:33 +05:30
|
|
|
|
2008-12-03 16:16:12 +05:30
|
|
|
# include <standards.h>
|
|
|
|
# include <inttypes.h>
|
|
|
|
# define PRIu32 "u"
|
2007-04-12 18:01:02 +05:30
|
|
|
/* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
|
2008-12-03 16:16:12 +05:30
|
|
|
# define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0)
|
|
|
|
# if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
|
|
|
|
# define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
|
|
|
|
# endif
|
|
|
|
# if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
|
|
|
|
# define ADJ_FREQUENCY MOD_FREQUENCY
|
|
|
|
# endif
|
|
|
|
# if !defined ADJ_TIMECONST && defined MOD_TIMECONST
|
|
|
|
# define ADJ_TIMECONST MOD_TIMECONST
|
|
|
|
# endif
|
|
|
|
# if !defined ADJ_TICK && defined MOD_CLKB
|
|
|
|
# define ADJ_TICK MOD_CLKB
|
|
|
|
# endif
|
|
|
|
|
2009-07-05 07:04:12 +05:30
|
|
|
#else
|
2008-12-03 16:16:12 +05:30
|
|
|
|
|
|
|
# define bb_setpgrp() setpgrp()
|
2006-05-28 03:38:01 +05:30
|
|
|
|
2006-06-13 23:58:33 +05:30
|
|
|
#endif
|
|
|
|
|
2009-05-19 16:48:45 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
#endif
|