Browse Source

fix lock naming

Eric Andersen 18 years ago
parent
commit
94b7f1f35e
1 changed files with 6 additions and 6 deletions
  1. 6 6
      libc/inet/resolv.c

+ 6 - 6
libc/inet/resolv.c

@@ -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__
 		}