diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2005-07-13 16:28:25 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2005-07-13 09:28:25 -0700 |
commit | 4969c0d82c8bc9a2815883e3c968d81287c83483 (patch) | |
tree | 5dcc938a73f1b1d0d9190bda9b9610df0e6e1978 /gcc/gcov-io.h | |
parent | 98b6d47767360e010bc243995ff1091cc2ef9c3d (diff) | |
download | gcc-4969c0d82c8bc9a2815883e3c968d81287c83483.tar.gz |
linux.h (TARGET_HAS_F_SETLKW): Renamed to ...
2005-07-13 H.J. Lu <hongjiu.lu@intel.com>
* config/alpha/linux.h (TARGET_HAS_F_SETLKW): Renamed to ...
(TARGET_POSIX_IO): This.
* config/darwin.h: Likewise.
* config/freebsd.h: Likewise.
* config/linux.h: Likewise.
* config/lynx.h: Likewise.
* config/netbsd.h: Likewise.
* config/rs6000/linux64.h: Likewise.
* config/rs6000/linux.h: Likewise.
* config/s390/tpf.h: Likewise.
* config/sh/embed-elf.h: Likewise.
* config/sparc/linux64.h: Likewise.
* config/sparc/linux.h: Likewise.
* config/svr4.h: Likewise.
* gcov-io.h: Likewise.
* doc/tm.texi: Updated.
* libgcov.c (create_file_directory): Defined only if
TARGET_POSIX_IO is defined.
(gcov_exit): Call create_file_directory only if TARGET_POSIX_IO
is defined.
From-SVN: r101973
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r-- | gcc/gcov-io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index 045f6657ace..f3607d97890 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -195,7 +195,7 @@ typedef signed gcov_type __attribute__ ((mode (QI))); #endif -#if defined (TARGET_HAS_F_SETLKW) +#if defined (TARGET_POSIX_IO) #define GCOV_LOCKED 1 #else #define GCOV_LOCKED 0 |