mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00:00
* io/Makefile (routines): Add mknod, xstat fxstat lxstat xmknod.
* sysdeps/unix/sysv/linux/ptrace.c: Use ... decl, and stdarg.h to get args. * posix/glob.c (_GNU_SOURCE): Define if undefined, so glob.h defines GNU extensions. * posix/fnmatch.c: Likewise.
This commit is contained in:
parent
9b29e6f7a3
commit
97aa195cf7
@ -1,5 +1,14 @@
|
|||||||
Thu Jan 18 00:32:43 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
Thu Jan 18 00:32:43 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* io/Makefile (routines): Add mknod, xstat fxstat lxstat xmknod.
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/ptrace.c: Use ... decl, and stdarg.h to
|
||||||
|
get args.
|
||||||
|
|
||||||
|
* posix/glob.c (_GNU_SOURCE): Define if undefined, so glob.h
|
||||||
|
defines GNU extensions.
|
||||||
|
* posix/fnmatch.c: Likewise.
|
||||||
|
|
||||||
Replaced all simple system call files *.S throughout sysdeps/unix
|
Replaced all simple system call files *.S throughout sysdeps/unix
|
||||||
with syscalls.list files to be processed by make-syscalls.sh.
|
with syscalls.list files to be processed by make-syscalls.sh.
|
||||||
* sysdeps/unix/s-proto.S: New file.
|
* sysdeps/unix/s-proto.S: New file.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -29,7 +29,8 @@ headers := sys/stat.h statbuf.h \
|
|||||||
routines := \
|
routines := \
|
||||||
utime \
|
utime \
|
||||||
mkfifo \
|
mkfifo \
|
||||||
stat fstat lstat \
|
stat fstat lstat mknod \
|
||||||
|
xstat fxstat lxstat xmknod \
|
||||||
umask chmod fchmod mkdir \
|
umask chmod fchmod mkdir \
|
||||||
open close read write lseek access euidaccess \
|
open close read write lseek access euidaccess \
|
||||||
fcntl flock lockf \
|
fcntl flock lockf \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
|
/* Copyright (C) 1991, 1992, 1993, 1996 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public License as
|
modify it under the terms of the GNU Library General Public License as
|
||||||
@ -19,6 +19,11 @@ Cambridge, MA 02139, USA. */
|
|||||||
#include <config.h>
|
#include <config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Enable GNU extensions in fnmatch.h. */
|
||||||
|
#ifndef _GNU_SOURCE
|
||||||
|
#define _GNU_SOURCE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fnmatch.h>
|
#include <fnmatch.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -24,6 +24,11 @@ Cambridge, MA 02139, USA. */
|
|||||||
#include <config.h>
|
#include <config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Enable GNU extensions in glob.h. */
|
||||||
|
#ifndef _GNU_SOURCE
|
||||||
|
#define _GNU_SOURCE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
@ -17,16 +17,28 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <sys/types.h>
|
||||||
#include <sys/ptrace.h>
|
#include <sys/ptrace.h>
|
||||||
#include <sys/syscall.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
extern int __syscall_ptrace (int, pid_t, void *, void *);
|
||||||
|
|
||||||
int
|
int
|
||||||
ptrace (int request, int pid, int addr, int data)
|
ptrace (enum __ptrace_request request, ...)
|
||||||
{
|
{
|
||||||
long int ret;
|
int res, ret;
|
||||||
long int res;
|
va_list ap;
|
||||||
|
pid_t pid;
|
||||||
|
void *addr, *data;
|
||||||
|
|
||||||
|
va_start (ap, request);
|
||||||
|
pid = va_arg (ap, pid_t);
|
||||||
|
addr = va_arg (ap, void *);
|
||||||
|
data = va_arg (ap, void *);
|
||||||
|
va_end (ap);
|
||||||
|
|
||||||
if (request > 0 && request < 4)
|
if (request > 0 && request < 4)
|
||||||
(long int *) data = &ret;
|
data = &ret;
|
||||||
|
|
||||||
res = __syscall_ptrace (request, pid, addr, data);
|
res = __syscall_ptrace (request, pid, addr, data);
|
||||||
|
|
||||||
@ -35,9 +47,9 @@ ptrace (int request, int pid, int addr, int data)
|
|||||||
if (request > 0 && request < 4)
|
if (request > 0 && request < 4)
|
||||||
{
|
{
|
||||||
errno = 0;
|
errno = 0;
|
||||||
return (ret);
|
return ret;
|
||||||
}
|
}
|
||||||
return (int) res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
errno = -res;
|
errno = -res;
|
||||||
|
Loading…
Reference in New Issue
Block a user