2008-02-28 00:11:59 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 by Denys Vlasenko <vda.linux@googlemail.com>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2008-02-28 00:11:59 +05:30
|
|
|
*/
|
|
|
|
|
2008-04-22 05:38:27 +05:30
|
|
|
#include <errno.h>
|
|
|
|
|
2008-04-11 16:57:29 +05:30
|
|
|
struct globals;
|
|
|
|
|
|
|
|
#ifndef GCC_COMBINE
|
|
|
|
|
2008-02-28 00:11:59 +05:30
|
|
|
/* We cheat here. It is declared as const ptr in libbb.h,
|
|
|
|
* but here we make it live in R/W memory */
|
|
|
|
struct globals *ptr_to_globals;
|
2008-04-11 16:57:29 +05:30
|
|
|
|
2008-04-22 05:38:27 +05:30
|
|
|
#ifdef __GLIBC__
|
|
|
|
int *bb_errno;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-04-11 16:57:29 +05:30
|
|
|
#else
|
|
|
|
|
2008-04-22 05:38:27 +05:30
|
|
|
|
2008-04-11 16:57:29 +05:30
|
|
|
/* gcc -combine will see through and complain */
|
|
|
|
/* Using alternative method which is more likely to break
|
|
|
|
* on weird architectures, compilers, linkers and so on */
|
|
|
|
struct globals *const ptr_to_globals __attribute__ ((section (".data")));
|
|
|
|
|
2008-04-22 05:38:27 +05:30
|
|
|
#ifdef __GLIBC__
|
|
|
|
int *const bb_errno __attribute__ ((section (".data")));
|
2008-04-11 16:57:29 +05:30
|
|
|
#endif
|
|
|
|
|
2008-04-22 05:38:27 +05:30
|
|
|
#endif
|