Skip to content

Commit de7fe08

Browse files
committed
includes/system: Mark functions as nogil
1 parent fece38d commit de7fe08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uvloop/includes/system.pxd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
cdef extern from "arpa/inet.h":
1+
cdef extern from "arpa/inet.h" nogil:
22

33
int ntohl(int)
44
int htonl(int)
55
int ntohs(int)
66

77

8-
cdef extern from "sys/socket.h":
8+
cdef extern from "sys/socket.h" nogil:
99

1010
struct sockaddr:
1111
unsigned short sa_family

0 commit comments

Comments
 (0)