nuttx/net/local
Gregory Nutt 83cdb0c552 Squashed commit of the following:
libc/semaphore:  Add nxsem_getvalue() which is identical to sem_getvalue() except that it never modifies the errno variable.  Changed all references to sem_getvalue in the OS to nxsem_getvalue().

    sched/semaphore:  Rename all internal private functions from sem_xyz to nxsem_xyz.  The sem_ prefix is (will be) reserved only for the application semaphore interfaces.

    libc/semaphore:  Add nxsem_init() which is identical to sem_init() except that it never modifies the errno variable.  Changed all references to sem_init in the OS to nxsem_init().

    sched/semaphore:  Rename sem_tickwait() to nxsem_tickwait() so that it is clear this is an internal OS function.

    sched/semaphoate:  Rename sem_reset() to nxsem_reset() so that it is clear this is an internal OS function.
2017-10-03 12:52:31 -06:00
..
Kconfig Fix a few typos in the last commit 2016-07-19 13:40:54 -06:00
local_accept.c net/local: fix accept for local stream sockets 2017-07-31 07:36:54 -06:00
local_bind.c Socket interface: Added getsockname[C() interfaces. 2017-07-14 09:04:19 -06:00
local_conn.c Squashed commit of the following: 2017-10-03 12:52:31 -06:00
local_connect.c Squashed commit of the following: 2017-10-03 12:52:31 -06:00
local_fifo.c Add CONFIG_DEBUG_ERROR. Change names of *dbg() * *err() 2016-06-11 15:50:49 -06:00
local_listen.c Networking: Fix typos introduced with network interface changes. 2017-07-14 06:02:49 -06:00
local_netpoll.c Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
local_recvfrom.c Socket I/F: Add recvfrom() method to interface. 2017-07-12 17:36:05 -06:00
local_recvutils.c Add CONFIG_DEBUG_ERROR. Change names of *dbg() * *err() 2016-06-11 15:50:49 -06:00
local_release.c Eliminate CONFIG_NO_NOINTS. Lots of files changed -> lots of testing needed. 2016-12-03 16:28:19 -06:00
local_send.c Socket interface: Fix some configuration chaos. Sometime CONFIG_NET_UDP/TCP was used when CONFIG_NET_LOCAL_DGRAM/STREAM was intended. 2017-07-14 12:36:54 -06:00
local_sendpacket.c Add CONFIG_DEBUG_ERROR. Change names of *dbg() * *err() 2016-06-11 15:50:49 -06:00
local_sendto.c Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
local_sockif.c Networking: Fix a race condition. The accept() operation is performed with the network locked. However, the network is unlocked BEFORE the connected state is set. Therefore, a context switch may occur and the socket may no longer be connected when it is marked so. Noted by Pascal Speck. 2017-08-31 07:23:19 -06:00
local.h net/local: fix accept for local stream sockets 2017-07-31 07:36:54 -06:00
Make.defs Sockets: Initial steps to adde a socket interface to the networking. Each address family will have an interface that describes how to perform socket operations on that address family. Currently only a couple of methods are defined in the table as a proof of concept. More to come. Currently there are only tables for the INET/INET6 family, the Unix LOCAL family, and the raw PACKET family. Hopefully there will be AF_IEEE802154 and AF_BLUETOOTH comming down the pike. 2017-07-12 15:07:32 -06:00