]> Zhao Yanbai Git Server - minix.git/commitdiff
use __restrict instead of restrict
authorBen Gras <ben@minix3.org>
Fri, 30 Mar 2012 15:11:01 +0000 (17:11 +0200)
committerBen Gras <ben@minix3.org>
Fri, 30 Mar 2012 15:37:53 +0000 (17:37 +0200)
. doesn't choke gcc without -std=c99
. also used in prototypes already

lib/libc/sys-minix/accept.c
lib/libc/sys-minix/getpeername.c
lib/libc/sys-minix/getsockname.c
lib/libc/sys-minix/getsockopt.c
lib/libc/sys-minix/gettimeofday.c
lib/libc/sys-minix/recvfrom.c
lib/libc/sys-minix/setitimer.c

index 7e659884ec385d3cf89efa40ddbc2e098642ffb9..88c9c9c0ce08cbcfc9a9ec0eb618ca9a2451960d 100644 (file)
 
 #define DEBUG 0
 
-static int _tcp_accept(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len);
+static int _tcp_accept(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len);
 
-static int _uds_accept(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len);
+static int _uds_accept(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len);
 
-int accept(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len)
+int accept(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len)
 {
        int r;
        nwio_udpopt_t udpopt;
@@ -60,8 +60,8 @@ int accept(int sock, struct sockaddr *restrict address,
        return r;
 }
 
-static int _tcp_accept(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len)
+static int _tcp_accept(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len)
 {
        int r, s1, t_errno;
        tcp_cookie_t cookie;
@@ -90,8 +90,8 @@ static int _tcp_accept(int sock, struct sockaddr *restrict address,
        return s1;
 }
 
-static int _uds_accept(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len)
+static int _uds_accept(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len)
 {
        int s1;
        int r;
index 20f6659f24dcc26d0768c0ff378ffc756c56f557..d0487248a9da6ee0347012274c962061b2f15aa9 100644 (file)
 
 #define DEBUG 0
 
-static int _tcp_getpeername(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, nwio_tcpconf_t *tcpconfp);
+static int _tcp_getpeername(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, nwio_tcpconf_t *tcpconfp);
 
-static int _uds_getpeername(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, struct sockaddr_un *uds_addr);
+static int _uds_getpeername(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, struct sockaddr_un *uds_addr);
 
-int getpeername(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len)
+int getpeername(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len)
 {
        int r;
        nwio_tcpconf_t tcpconf;
@@ -61,8 +61,8 @@ int getpeername(int sock, struct sockaddr *restrict address,
        return -1;
 }
 
-static int _tcp_getpeername(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, nwio_tcpconf_t *tcpconfp)
+static int _tcp_getpeername(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, nwio_tcpconf_t *tcpconfp)
 {
        socklen_t len;
        struct sockaddr_in sin;
@@ -88,8 +88,8 @@ static int _tcp_getpeername(int sock, struct sockaddr *restrict address,
        return 0;
 }
 
-static int _uds_getpeername(int sock, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, struct sockaddr_un *uds_addr)
+static int _uds_getpeername(int sock, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, struct sockaddr_un *uds_addr)
 {
        socklen_t len;
 
index a2dce74e197a2bb29b622bfb3fb07da5852257e3..d6ea057877ca801a8b84051ec0c8ad1a1aaf645f 100644 (file)
 #define DEBUG 0
 */
 
-static int _tcp_getsockname(int fd, struct sockaddr *restrict address,
-   socklen_t *restrict address_len, nwio_tcpconf_t *tcpconfp);
+static int _tcp_getsockname(int fd, struct sockaddr *__restrict address,
+   socklen_t *__restrict address_len, nwio_tcpconf_t *tcpconfp);
 
-static int _uds_getsockname(int fd, struct sockaddr *restrict address,
-   socklen_t *restrict address_len, struct sockaddr_un *uds_addr);
+static int _uds_getsockname(int fd, struct sockaddr *__restrict address,
+   socklen_t *__restrict address_len, struct sockaddr_un *uds_addr);
 
-int getsockname(int fd, struct sockaddr *restrict address,
-   socklen_t *restrict address_len)
+int getsockname(int fd, struct sockaddr *__restrict address,
+   socklen_t *__restrict address_len)
 {
        int r;
        nwio_tcpconf_t tcpconf;
@@ -75,8 +75,8 @@ int getsockname(int fd, struct sockaddr *restrict address,
 }
 
 
-static int _tcp_getsockname(int fd, struct sockaddr *restrict address,
-   socklen_t *restrict address_len, nwio_tcpconf_t *tcpconf)
+static int _tcp_getsockname(int fd, struct sockaddr *__restrict address,
+   socklen_t *__restrict address_len, nwio_tcpconf_t *tcpconf)
 {
        socklen_t len;
        struct sockaddr_in sin;
@@ -104,8 +104,8 @@ static int _tcp_getsockname(int fd, struct sockaddr *restrict address,
        return 0;
 }
 
-static int _uds_getsockname(int fd, struct sockaddr *restrict address,
-   socklen_t *restrict address_len, struct sockaddr_un *uds_addr)
+static int _uds_getsockname(int fd, struct sockaddr *__restrict address,
+   socklen_t *__restrict address_len, struct sockaddr_un *uds_addr)
 {
        socklen_t len;
 
index 09a6dff6434497f66586a19901c4cdb9f2e7db7f..c37b5dc365158a70b5e2aa21f17247bf514f65c5 100644 (file)
 #define DEBUG 0
 
 static int _tcp_getsockopt(int sock, int level, int option_name,
-       void *restrict option_value, socklen_t *restrict option_len);
+       void *__restrict option_value, socklen_t *__restrict option_len);
 static int _udp_getsockopt(int sock, int level, int option_name,
-       void *restrict option_value, socklen_t *restrict option_len);
+       void *__restrict option_value, socklen_t *__restrict option_len);
 static int _uds_getsockopt(int sock, int level, int option_name,
-       void *restrict option_value, socklen_t *restrict option_len);
+       void *__restrict option_value, socklen_t *__restrict option_len);
 static void getsockopt_copy(void *return_value, size_t return_len,
-       void *restrict option_value, socklen_t *restrict option_len);
+       void *__restrict option_value, socklen_t *__restrict option_len);
 
 int getsockopt(int sock, int level, int option_name,
-        void *restrict option_value, socklen_t *restrict option_len)
+        void *__restrict option_value, socklen_t *__restrict option_len)
 {
        int r;
        nwio_tcpopt_t tcpopt;
@@ -83,7 +83,7 @@ int getsockopt(int sock, int level, int option_name,
 }
 
 static void getsockopt_copy(void *return_value, size_t return_len,
-       void *restrict option_value, socklen_t *restrict option_len)
+       void *__restrict option_value, socklen_t *__restrict option_len)
 {
        /* copy as much data as possible */
        if (*option_len < return_len)
@@ -96,7 +96,7 @@ static void getsockopt_copy(void *return_value, size_t return_len,
 }
 
 static int _tcp_getsockopt(int sock, int level, int option_name,
-       void *restrict option_value, socklen_t *restrict option_len)
+       void *__restrict option_value, socklen_t *__restrict option_len)
 {
        int i, r, err;
 
@@ -157,7 +157,7 @@ static int _tcp_getsockopt(int sock, int level, int option_name,
 }
 
 static int _udp_getsockopt(int sock, int level, int option_name,
-       void *restrict option_value, socklen_t *restrict option_len)
+       void *__restrict option_value, socklen_t *__restrict option_len)
 {
        int i;
 
@@ -177,7 +177,7 @@ static int _udp_getsockopt(int sock, int level, int option_name,
 }
 
 static int _uds_getsockopt(int sock, int level, int option_name,
-       void *restrict option_value, socklen_t *restrict option_len)
+       void *__restrict option_value, socklen_t *__restrict option_len)
 {
        int i, r;
        size_t size;
index 1532ef302e73f008e8ba3aaae3a3638020800bf4..352c596124bee49e31d85b3e5286e6ca960d29f2 100644 (file)
@@ -12,7 +12,7 @@ gettimeofday.c
 __weak_alias(gettimeofday, _gettimeofday)
 #endif
 
-int gettimeofday(struct timeval *restrict tp, void *restrict tzp)
+int gettimeofday(struct timeval *__restrict tp, void *__restrict tzp)
 {
   message m;
 
index 9b0cb41a6f322a22a50733684360b88c4eeecb6d..091559f9ea5c796156c8f3ad01c77e35a319a1c1 100644 (file)
 
 #define DEBUG 0
 
-static ssize_t _tcp_recvfrom(int sock, void *restrict buffer, size_t length,
-       int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, nwio_tcpconf_t *tcpconfp);
-static ssize_t _udp_recvfrom(int sock, void *restrict buffer, size_t length,
-       int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, nwio_udpopt_t *udpoptp);
-static ssize_t _uds_recvfrom_conn(int sock, void *restrict buffer,
-       size_t length, int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, struct sockaddr_un *uds_addr);
-static ssize_t _uds_recvfrom_dgram(int sock, void *restrict buffer,
-       size_t length, int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len);
-
-ssize_t recvfrom(int sock, void *restrict buffer, size_t length,
-       int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len)
+static ssize_t _tcp_recvfrom(int sock, void *__restrict buffer, size_t length,
+       int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, nwio_tcpconf_t *tcpconfp);
+static ssize_t _udp_recvfrom(int sock, void *__restrict buffer, size_t length,
+       int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, nwio_udpopt_t *udpoptp);
+static ssize_t _uds_recvfrom_conn(int sock, void *__restrict buffer,
+       size_t length, int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, struct sockaddr_un *uds_addr);
+static ssize_t _uds_recvfrom_dgram(int sock, void *__restrict buffer,
+       size_t length, int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len);
+
+ssize_t recvfrom(int sock, void *__restrict buffer, size_t length,
+       int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len)
 {
        int r;
        nwio_tcpconf_t tcpconf;
@@ -93,9 +93,9 @@ ssize_t recvfrom(int sock, void *restrict buffer, size_t length,
        return -1;
 }
 
-static ssize_t _tcp_recvfrom(int sock, void *restrict buffer, size_t length,
-       int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, nwio_tcpconf_t *tcpconfp)
+static ssize_t _tcp_recvfrom(int sock, void *__restrict buffer, size_t length,
+       int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, nwio_tcpconf_t *tcpconfp)
 {
        int r;
        size_t len;
@@ -127,9 +127,9 @@ static ssize_t _tcp_recvfrom(int sock, void *restrict buffer, size_t length,
        return r;
 }
 
-static ssize_t _udp_recvfrom(int sock, void *restrict buffer, size_t length,
-       int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, nwio_udpopt_t *udpoptp)
+static ssize_t _udp_recvfrom(int sock, void *__restrict buffer, size_t length,
+       int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, nwio_udpopt_t *udpoptp)
 {
        int r, t_errno;
        size_t buflen, len;
@@ -226,9 +226,9 @@ static ssize_t _udp_recvfrom(int sock, void *restrict buffer, size_t length,
        return length;
 }
 
-static ssize_t _uds_recvfrom_conn(int sock, void *restrict buffer, 
-       size_t length, int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len, struct sockaddr_un *uds_addr)
+static ssize_t _uds_recvfrom_conn(int sock, void *__restrict buffer, 
+       size_t length, int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len, struct sockaddr_un *uds_addr)
 {
        int r;
        size_t len;
@@ -261,9 +261,9 @@ static ssize_t _uds_recvfrom_conn(int sock, void *restrict buffer,
        return r;
 }
 
-static ssize_t _uds_recvfrom_dgram(int sock, void *restrict buffer, 
-       size_t length, int flags, struct sockaddr *restrict address,
-       socklen_t *restrict address_len)
+static ssize_t _uds_recvfrom_dgram(int sock, void *__restrict buffer, 
+       size_t length, int flags, struct sockaddr *__restrict address,
+       socklen_t *__restrict address_len)
 {
        int r;
        size_t len;
index 7a01b1d1431b3fedc3c2759034f8b0f26e1c75d9..dfe86703f59d7e667d41d415dda22489d0310fde 100644 (file)
@@ -8,8 +8,8 @@
  * This is the implementation of the function to
  * invoke the interval timer setting system call.
  */
-int setitimer(int which, const struct itimerval *restrict value,
-               struct itimerval *restrict ovalue)
+int setitimer(int which, const struct itimerval *__restrict value,
+               struct itimerval *__restrict ovalue)
 {
   message m;