mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-30 02:50:25 +08:00
ad5527663e
* Makefile.am: Move cmath stuff into libc/sys/linux. * Makefile.in: Regenerated. * configure.host: Default -DMB_CAPABLE for x86-linux. * libc/include/reent.h: Define _sbrk to take signed int argument. * libc/include/sys/unistd.h: Ditto for _sbrk_r and sbrk. * libc/locale/locale.c[MB_CAPABLE]: Add LC_MESSAGES support and make locale name checking more efficient. Also allow "C-ISO-8859-1" locale for LC_CTYPE and LC_MESSAGES. * libc/reent/sbrkr.c: Change prototype to take ptrdiff_t. * libc/sys/linux/brk.c: Change sbrk prototype. * libc/sys/linux/include/time.h: Remove Cygwin stuff and include <sys/features.h>. (CLOCK_THREAD_CPUTIME): Renamed to CLOCK_THREAD_CPUTIME_ID. (CLOCK_PROCESS_CPUTIME): Renamed to CLOCK_PROCESS_CPUTIME_ID. * libc/sys/linux/sys/cdefs.h: Replace with glibc sys/cdefs.h with a few local additions. * libc/sys/linux/sys/features.h: New file. * libc/sys/linux/sys/unistd.h: Change _sbrk_r and sbrk prototypes to take signed argument. * libc/syscalls/syssbrk.c: Change sbrk, _sbrk_r, and _sbrk prototypes to take signed size argument.
97 lines
3.8 KiB
C
97 lines
3.8 KiB
C
/* This header file provides the reentrancy. */
|
|
|
|
/* The reentrant system calls here serve two purposes:
|
|
|
|
1) Provide reentrant versions of the system calls the ANSI C library
|
|
requires.
|
|
2) Provide these system calls in a namespace clean way.
|
|
|
|
It is intended that *all* system calls that the ANSI C library needs
|
|
be declared here. It documents them all in one place. All library access
|
|
to the system is via some form of these functions.
|
|
|
|
There are three ways a target may provide the needed syscalls.
|
|
|
|
1) Define the reentrant versions of the syscalls directly.
|
|
(eg: _open_r, _close_r, etc.). Please keep the namespace clean.
|
|
When you do this, set "syscall_dir" to "syscalls" in configure.in,
|
|
and add -DREENTRANT_SYSCALLS_PROVIDED to target_cflags in configure.in.
|
|
|
|
2) Define namespace clean versions of the system calls by prefixing
|
|
them with '_' (eg: _open, _close, etc.). Technically, there won't be
|
|
true reentrancy at the syscall level, but the library will be namespace
|
|
clean.
|
|
When you do this, set "syscall_dir" to "syscalls" in configure.in.
|
|
|
|
3) Define or otherwise provide the regular versions of the syscalls
|
|
(eg: open, close, etc.). The library won't be reentrant nor namespace
|
|
clean, but at least it will work.
|
|
When you do this, add -DMISSING_SYSCALL_NAMES to target_cflags in
|
|
configure.in.
|
|
|
|
Stubs of the reentrant versions of the syscalls exist in the libc/reent
|
|
source directory and are used if REENTRANT_SYSCALLS_PROVIDED isn't defined.
|
|
They use the native system calls: _open, _close, etc. if they're available
|
|
(MISSING_SYSCALL_NAMES is *not* defined), otherwise open, close, etc.
|
|
(MISSING_SYSCALL_NAMES *is* defined). */
|
|
|
|
/* WARNING: All identifiers here must begin with an underscore. This file is
|
|
included by stdio.h and others and we therefore must only use identifiers
|
|
in the namespace allotted to us. */
|
|
|
|
#ifndef _REENT_H_
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#define _REENT_H_
|
|
|
|
#include <sys/reent.h>
|
|
#include <sys/_types.h>
|
|
#include <machine/types.h>
|
|
|
|
#define __need_size_t
|
|
#define __need_ptrdiff_t
|
|
#include <stddef.h>
|
|
|
|
/* FIXME: not namespace clean */
|
|
struct stat;
|
|
struct tms;
|
|
struct timeval;
|
|
struct timezone;
|
|
|
|
/* Reentrant versions of system calls. */
|
|
|
|
extern int _close_r _PARAMS ((struct _reent *, int));
|
|
extern int _execve_r _PARAMS ((struct _reent *, char *, char **, char **));
|
|
extern int _fcntl_r _PARAMS ((struct _reent *, int, int, int));
|
|
extern int _fork_r _PARAMS ((struct _reent *));
|
|
extern int _fstat_r _PARAMS ((struct _reent *, int, struct stat *));
|
|
extern int _getpid_r _PARAMS ((struct _reent *));
|
|
extern int _kill_r _PARAMS ((struct _reent *, int, int));
|
|
extern int _link_r _PARAMS ((struct _reent *, const char *, const char *));
|
|
extern _off_t _lseek_r _PARAMS ((struct _reent *, int, _off_t, int));
|
|
extern int _open_r _PARAMS ((struct _reent *, const char *, int, int));
|
|
extern _ssize_t _read_r _PARAMS ((struct _reent *, int, void *, size_t));
|
|
extern void *_sbrk_r _PARAMS ((struct _reent *, ptrdiff_t));
|
|
extern int _stat_r _PARAMS ((struct _reent *, const char *, struct stat *));
|
|
extern _CLOCK_T_ _times_r _PARAMS ((struct _reent *, struct tms *));
|
|
extern int _unlink_r _PARAMS ((struct _reent *, const char *));
|
|
extern int _wait_r _PARAMS ((struct _reent *, int *));
|
|
extern _ssize_t _write_r _PARAMS ((struct _reent *, int, const void *, size_t));
|
|
|
|
/* This one is not guaranteed to be available on all targets. */
|
|
extern int _gettimeofday_r _PARAMS ((struct _reent *, struct timeval *tp, struct timezone *tzp));
|
|
|
|
#ifdef __LARGE64_FILES
|
|
struct stat64;
|
|
|
|
extern _off64_t _lseek64_r _PARAMS ((struct _reent *, int, _off64_t, int));
|
|
extern int _fstat64_r _PARAMS ((struct _reent *, int, struct stat64 *));
|
|
extern int _open64_r _PARAMS ((struct _reent *, const char *, int, int));
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* _REENT_H_ */
|