summaryrefslogtreecommitdiff
path: root/ghc/lib/misc/Socket.lhs
Commit message (Collapse)AuthorAgeFilesLines
* [project @ 1999-11-26 16:29:09 by simonmar]simonmar1999-11-261-202/+0
| | | | GHC bits for new library organisation.
* [project @ 1999-07-29 13:57:34 by sof]sof1999-07-291-4/+4
| | | | | Recent CPP-related wibblement meant that _WIN32 wasn't defined when the pre-proc was run (cf. -undef usage.) Avoid the use of _WIN32
* [project @ 1999-05-05 10:36:29 by sof]sof1999-05-051-5/+10
| | | | switch over to using Winsock on the _WIN32 side
* [project @ 1998-08-14 13:05:45 by sof]sof1998-08-141-7/+7
| | | | Doc fixes
* [project @ 1998-08-11 19:25:54 by sof]sof1998-08-111-1/+1
| | | | New functions: SocketPrim.recvFrom and SocketPrim.sendTo
* [project @ 1998-08-05 22:33:05 by sof]sof1998-08-051-1/+1
| | | | accept buglet
* [project @ 1998-07-20 09:43:38 by sof]sof1998-07-201-63/+68
| | | | In a moment of boredom, converted to use do notation
* [project @ 1998-02-02 17:27:26 by simonm]simonm1998-02-021-0/+192
Library re-organisation: All libraries now live under ghc/lib, which has the following structure: ghc/lib/std -- all prelude files (libHS.a) ghc/lib/std/cbits ghc/lib/exts -- standard Hugs/GHC extensions (libHSexts.a) -- available with '-fglasgow-exts' ghc/lib/posix -- POSIX library (libHSposix.a) ghc/lib/posix/cbits -- available with '-syslib posix' ghc/lib/misc -- used to be hslibs/ghc (libHSmisc.a) ghc/lib/misc/cbits -- available with '-syslib misc' ghc/lib/concurrent -- Concurrent libraries (libHSconc.a) -- available with '-concurrent' Also, several non-standard prelude modules had their names changed to begin with 'Prel' to reduce namespace pollution. Addr ==> PrelAddr (Addr interface available in 'exts') ArrBase ==> PrelArr CCall ==> PrelCCall (CCall interface available in 'exts') ConcBase ==> PrelConc GHCerr ==> PrelErr Foreign ==> PrelForeign (Foreign interface available in 'exts') GHC ==> PrelGHC IOHandle ==> PrelHandle IOBase ==> PrelIOBase GHCmain ==> PrelMain STBase ==> PrelST Unsafe ==> PrelUnsafe UnsafeST ==> PrelUnsafeST