summaryrefslogtreecommitdiff
path: root/nuttx/net/setsockopt.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/net/setsockopt.c')
-rw-r--r--nuttx/net/setsockopt.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/net/setsockopt.c b/nuttx/net/setsockopt.c
index 41fe2e3c3..f8de93cff 100644
--- a/nuttx/net/setsockopt.c
+++ b/nuttx/net/setsockopt.c
@@ -1,7 +1,7 @@
/****************************************************************************
* net/setsockopt.c
*
- * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -103,7 +103,7 @@
int setsockopt(int sockfd, int level, int option, const void *value, socklen_t value_len)
{
FAR struct socket *psock;
- irqstate_t flags;
+ uip_lock_t flags;
int err;
/* Get the underlying socket structure */
@@ -160,7 +160,7 @@ int setsockopt(int sockfd, int level, int option, const void *value, socklen_t v
* level access to options.
*/
- flags = irqsave();
+ flags = uip_lock();
/* Set or clear the option bit */
@@ -172,6 +172,7 @@ int setsockopt(int sockfd, int level, int option, const void *value, socklen_t v
{
_SO_CLROPT(psock->s_options, option);
}
+ uip_unlock(flags);
}
break;