]> Git Repo - uclibc-ng.git/commitdiff
fix lock naming
authorEric Andersen <[email protected]>
Fri, 2 Feb 2007 00:37:06 +0000 (00:37 -0000)
committerEric Andersen <[email protected]>
Fri, 2 Feb 2007 00:37:06 +0000 (00:37 -0000)
libc/inet/resolv.c

index a910c9adfd2e294d137ef160905e0979ff8898c4..403f5c73f4206981d8f39a285b0c3f68ccb69fa2 100644 (file)
@@ -753,11 +753,11 @@ int attribute_hidden __dns_lookup(const char *name, int type, int nscount, char
                ++local_id;
                local_id &= 0xffff;
                h.id = local_id;
-               BIGLOCK;
+               __UCLIBC_MUTEX_LOCK(mylock);
                /* this is really __nameserver[] which is a global that
                   needs a lock!! */
                dns = nsip[local_ns];
-               BIGUNLOCK;
+               __UCLIBC_MUTEX_UNLOCK(mylock);
 
                h.qdcount = 1;
                h.rd = 1;
@@ -792,11 +792,11 @@ int attribute_hidden __dns_lookup(const char *name, int type, int nscount, char
                                retries+1, NAMESERVER_PORT, dns);
 
 #ifdef __UCLIBC_HAS_IPV6__
-               BIGLOCK;
+               __UCLIBC_MUTEX_LOCK(mylock);
                /* 'dns' is really __nameserver[] which is a global that
                   needs a lock!! */
                v6 = inet_pton(AF_INET6, dns, &sa6.sin6_addr) > 0;
-               BIGUNLOCK;
+               __UCLIBC_MUTEX_UNLOCK(mylock);
                fd = socket(v6 ? AF_INET6 : AF_INET, SOCK_DGRAM, IPPROTO_UDP);
 #else
                fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
@@ -817,11 +817,11 @@ int attribute_hidden __dns_lookup(const char *name, int type, int nscount, char
 #endif
                    sa.sin_family = AF_INET;
                    sa.sin_port = htons(NAMESERVER_PORT);
-                   BIGLOCK;
+                   __UCLIBC_MUTEX_LOCK(mylock);
                    /* 'dns' is really __nameserver[] which is a global that
                       needs a lock!! */
                    sa.sin_addr.s_addr = inet_addr(dns);
-                   BIGUNLOCK;
+                   __UCLIBC_MUTEX_UNLOCK(mylock);
                    rc = connect(fd, (struct sockaddr *) &sa, sizeof(sa));
 #ifdef __UCLIBC_HAS_IPV6__
                }
This page took 0.030433 seconds and 4 git commands to generate.