X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Modules%2FIPStack%2Fudp.h;h=657bce5abf347861a5997fe9f06c6f6e69dae418;hb=b1873b4cff47aae8ada8cc303ea01b475cc7ccc8;hp=2cc743abd02f4a83d3cd7e71b9f2870fe8975164;hpb=ff1aacd48c7b616508c1d4e7a7ba03f741ee2cda;p=tpg%2Facess2.git diff --git a/Modules/IPStack/udp.h b/Modules/IPStack/udp.h index 2cc743ab..657bce5a 100644 --- a/Modules/IPStack/udp.h +++ b/Modules/IPStack/udp.h @@ -40,7 +40,7 @@ struct sUDPChannel } RemoteAddr; Uint16 RemotePort; tVFS_Node Node; - tSpinlock lQueue; + tShortSpinlock lQueue; tUDPPacket * volatile Queue; tUDPPacket *QueueEnd; }; @@ -56,7 +56,7 @@ struct sUDPServer int NextID; int NumChannels; tUDPChannel *Channels; - tSpinlock Lock; + tMutex Lock; tUDPChannel * volatile NewChannels; };