mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
* sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
if __NR_utimensat is not defined.
This commit is contained in:
parent
991fa82be5
commit
40f57573d0
@ -1,3 +1,8 @@
|
|||||||
|
2007-05-28 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
|
||||||
|
if __NR_utimensat is not defined.
|
||||||
|
|
||||||
2007-05-26 Ulrich Drepper <drepper@redhat.com>
|
2007-05-26 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
|
* sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2007-05-28 Jakub Jelinek <jakub@redhat.com>
|
2007-05-28 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c: Include
|
||||||
|
unistd.h.
|
||||||
|
|
||||||
* sysdeps/i386/tls.h (THREAD_GSCOPE_RESET_FLAG): Use explicit
|
* sysdeps/i386/tls.h (THREAD_GSCOPE_RESET_FLAG): Use explicit
|
||||||
insn suffix.
|
insn suffix.
|
||||||
(THREAD_GSCOPE_GET_FLAG): Remove.
|
(THREAD_GSCOPE_GET_FLAG): Remove.
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
#include <unistd.h> /* For __getpagesize. */
|
||||||
#define NEW_VERNUM GLIBC_2_6
|
#define NEW_VERNUM GLIBC_2_6
|
||||||
#define STACKSIZE_ADJUST \
|
#define STACKSIZE_ADJUST \
|
||||||
do { \
|
do { \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* futimes -- change access and modification times of open file. Linux version.
|
/* futimes -- change access and modification times of open file. Linux version.
|
||||||
Copyright (C) 2002,2003,2005,2006 Free Software Foundation, Inc.
|
Copyright (C) 2002,2003,2005,2006,2007 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,7 @@
|
|||||||
#include <kernel-features.h>
|
#include <kernel-features.h>
|
||||||
|
|
||||||
|
|
||||||
#ifndef __ASSUME_UTIMENSAT
|
#if defined __NR_utimensat && !defined __ASSUME_UTIMENSAT
|
||||||
static int miss_utimensat;
|
static int miss_utimensat;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user