diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-11-21 16:44:39 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-11-21 16:44:39 +0000 |
commit | a7c3258311f02587564df48055a8dabbab464fdc (patch) | |
tree | b99e0a6d2baf283bc5afd65dac52f0484216d9fb | |
parent | c9e978ed1b0a7ca8d0ed09480eba4b691c561271 (diff) | |
download | newlib-a7c3258311f02587564df48055a8dabbab464fdc.zip newlib-a7c3258311f02587564df48055a8dabbab464fdc.tar.gz newlib-a7c3258311f02587564df48055a8dabbab464fdc.tar.bz2 |
2013-11-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* libc/posix/readdir_r.c: Add restrict keyword.
* libc/machine/spu/sys/dirent.h, libc/sys/decstation/sys/dirent.h,
libc/sys/linux/sys/dirent.h, libc/sys/rtems/sys/dirent.h,
libc/sys/sparc64/sys/dirent.h, libc/sys/sun4/sys/dirent.h,
libc/sys/sysvi386/sys/dirent.h: Add readdir_r() prototype.
-rw-r--r-- | newlib/ChangeLog | 8 | ||||
-rw-r--r-- | newlib/libc/machine/spu/sys/dirent.h | 2 | ||||
-rw-r--r-- | newlib/libc/posix/readdir_r.c | 6 | ||||
-rw-r--r-- | newlib/libc/sys/decstation/sys/dirent.h | 2 | ||||
-rw-r--r-- | newlib/libc/sys/linux/sys/dirent.h | 2 | ||||
-rw-r--r-- | newlib/libc/sys/rtems/sys/dirent.h | 2 | ||||
-rw-r--r-- | newlib/libc/sys/sparc64/sys/dirent.h | 2 | ||||
-rw-r--r-- | newlib/libc/sys/sun4/sys/dirent.h | 2 | ||||
-rw-r--r-- | newlib/libc/sys/sysvi386/sys/dirent.h | 2 |
9 files changed, 25 insertions, 3 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index ec398c1..f509eb2 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,13 @@ 2013-11-21 Joel Sherrill <joel.sherrill@oarcorp.com> + * libc/posix/readdir_r.c: Add restrict keyword. + * libc/machine/spu/sys/dirent.h, libc/sys/decstation/sys/dirent.h, + libc/sys/linux/sys/dirent.h, libc/sys/rtems/sys/dirent.h, + libc/sys/sparc64/sys/dirent.h, libc/sys/sun4/sys/dirent.h, + libc/sys/sysvi386/sys/dirent.h: Add readdir_r() prototype. + +2013-11-21 Joel Sherrill <joel.sherrill@oarcorp.com> + * libc/sys/rdos/stat.c: Remove stray +. 2013-11-21 Daniel Ramirez <javamonn@gmail.com> diff --git a/newlib/libc/machine/spu/sys/dirent.h b/newlib/libc/machine/spu/sys/dirent.h index 6a158ec..60da65a 100644 --- a/newlib/libc/machine/spu/sys/dirent.h +++ b/newlib/libc/machine/spu/sys/dirent.h @@ -54,6 +54,8 @@ typedef struct { DIR *opendir(const char *); int closedir(DIR *); struct dirent *readdir (DIR *); +int readdir_r (DIR *__restrict, struct dirent *__restrict, + struct dirent **__restrict); void rewinddir(DIR *); void seekdir(DIR *dir, off_t offset); off_t telldir(DIR *dir); diff --git a/newlib/libc/posix/readdir_r.c b/newlib/libc/posix/readdir_r.c index 1d526e3..d13775b 100644 --- a/newlib/libc/posix/readdir_r.c +++ b/newlib/libc/posix/readdir_r.c @@ -51,9 +51,9 @@ extern int getdents (int fd, void *dp, int count); */ int _DEFUN(readdir_r, (dirp, dp, dpp), - register DIR *dirp _AND - struct dirent *dp _AND - struct dirent **dpp) { + register DIR *__restrict dirp _AND + struct dirent *__restrict dp _AND + struct dirent **__restrict dpp) { struct dirent *tmpdp; diff --git a/newlib/libc/sys/decstation/sys/dirent.h b/newlib/libc/sys/decstation/sys/dirent.h index c5a90e9..c3abda6 100644 --- a/newlib/libc/sys/decstation/sys/dirent.h +++ b/newlib/libc/sys/decstation/sys/dirent.h @@ -25,6 +25,8 @@ typedef struct __dirdesc { DIR *opendir (const char *); struct dirent *readdir (DIR *); +int readdir_r (DIR *__restrict, struct dirent *__restrict, + struct dirent **__restrict); void rewinddir (DIR *); int closedir (DIR *); diff --git a/newlib/libc/sys/linux/sys/dirent.h b/newlib/libc/sys/linux/sys/dirent.h index ec8ed89..a67378b 100644 --- a/newlib/libc/sys/linux/sys/dirent.h +++ b/newlib/libc/sys/linux/sys/dirent.h @@ -36,6 +36,8 @@ typedef struct { DIR *opendir(const char *); struct dirent *readdir(DIR *); +int readdir_r(DIR *__restrict, struct dirent *__restrict, + struct dirent **__restrict); void rewinddir(DIR *); int closedir(DIR *); diff --git a/newlib/libc/sys/rtems/sys/dirent.h b/newlib/libc/sys/rtems/sys/dirent.h index c52c7bc..8d2aa38 100644 --- a/newlib/libc/sys/rtems/sys/dirent.h +++ b/newlib/libc/sys/rtems/sys/dirent.h @@ -26,6 +26,8 @@ typedef struct _dirdesc { DIR *opendir(const char *); struct dirent *readdir(DIR *); +int readdir_r(DIR *__restrict, struct dirent *__restrict, + struct dirent **__restrict); void rewinddir(DIR *); int closedir(DIR *); void seekdir(DIR *dir, long loc); diff --git a/newlib/libc/sys/sparc64/sys/dirent.h b/newlib/libc/sys/sparc64/sys/dirent.h index 864bb5c..cb933b4 100644 --- a/newlib/libc/sys/sparc64/sys/dirent.h +++ b/newlib/libc/sys/sparc64/sys/dirent.h @@ -21,6 +21,8 @@ typedef struct __dirdesc { DIR *opendir (const char *); struct dirent *readdir (DIR *); +int readdir_r (DIR *__restrict, struct dirent *__restrict, + struct dirent **__restrict); void rewinddir (DIR *); int closedir (DIR *); diff --git a/newlib/libc/sys/sun4/sys/dirent.h b/newlib/libc/sys/sun4/sys/dirent.h index b7ca90b..2e6fc45 100644 --- a/newlib/libc/sys/sun4/sys/dirent.h +++ b/newlib/libc/sys/sun4/sys/dirent.h @@ -23,6 +23,8 @@ typedef struct __dirdesc { DIR *opendir (const char *); struct dirent *readdir (DIR *); +int readdir_r (DIR *__restrict, struct dirent *__restrict, + struct dirent **__restrict); void rewinddir (DIR *); int closedir (DIR *); diff --git a/newlib/libc/sys/sysvi386/sys/dirent.h b/newlib/libc/sys/sysvi386/sys/dirent.h index 7280421..06af4fa 100644 --- a/newlib/libc/sys/sysvi386/sys/dirent.h +++ b/newlib/libc/sys/sysvi386/sys/dirent.h @@ -20,6 +20,8 @@ typedef struct _dirdesc { DIR *opendir (const char *); struct dirent *readdir (DIR *); +int readdir_r (DIR *__restrict, struct dirent *__restrict, + struct dirent **__restrict); void rewinddir (DIR *); int closedir (DIR *); |