summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fixup commit for branch 'RDF_19990422_BRANCH'RDF_19990422_BRANCHcvs2hg1999-04-210-0/+0
|
* updating to license version 1.1 in boilerplate commentsRDF_19990422_BASEdmose%mozilla.org1999-04-21565-565/+565
|
* Bugzilla bug #5358: temporary fix for the build problem on Solaris/x86.wtc%netscape.com1999-04-211-0/+6
| | | | | | We don't have an assembly language implementation of atomic stacks for Solaris/x86 yet. Thanks to Justin A. Kolodziej <4wg7kolodzie@marquette.edu> for reporting the bug.
* Bugzilla bug #5344: added the missing #define PLARENAS_H as part ofwtc%netscape.com1999-04-211-0/+1
| | | | | the double-include guard. Thanks to Bruce Mitchener <bruce@cybersight.com> for the bug report.
* Use of lstat, instead of stat, causes nsinstall to miss directories pointed ↵srinivas%netscape.com1999-04-211-1/+1
| | | | | | to by symlinks. Bugzilla #4954.
* Bugzilla bug #4741: add lib version info to libplds3 and libprstrms3.wtc%netscape.com1999-04-198-19/+282
| | | | | | | | | Bugzilla bug #5284: the lib version structures for libnspr3 and libplc3 are incorrectly named (still referring to libnspr21 and libplc21). Modified files: lib/ds/Makefile, lib/prstreams/Makefile, lib/libc/src/Makefile, lib/libc/src/plvrsion.c, pr/src/Makefile, pr/src/prvrsion.c Added files: lib/ds/plvrsion.c, lib/prstreams/plvrsion.c
* Declare _PR_Unblock_IO_Wait.wtc%netscape.com1999-04-161-0/+2
|
* Bugzilla bug #146: cast unsigned to signed type before applying thewtc%netscape.com1999-04-161-0/+5
| | | | | unary minus operator to get rid of a compiler warning. Thanks to rick@rixsoft.com for the bug report.
* Removed unused variables LIBNSPR and PURELIBNSPR.wtc%netscape.com1999-04-151-3/+0
|
* Bugzilla bug #5111: include my_config.mk and my_overrides.mk, if theywtc%netscape.com1999-04-152-0/+34
| | | | | | | exist, to allow for user config and overrides of NSPR build variables. Thanks to Ramiro Estrugo <ramiro@netscape.com> for the design and implementation. Modified files: .cvsignore, config.mk.
* Bugsplat bug #345296: added a test program that have multiplewtc%netscape.com1999-04-152-0/+234
| | | | threads accepting on the same listening socket.
* Fix warning message on _MD_EXITlarryh%netscape.com1999-04-141-0/+1
|
* Bugzilla bug #4952: line 35 spilled over to line 36, and a '-' was missing.wtc%netscape.com1999-04-141-2/+1
| | | | Thanks to tomg@squish.org for the bug report.
* Bugzilla bug #2802: prepend current directory to $(DIST)/lib onlywtc%netscape.com1999-04-141-14/+23
| | | | | if $(DIST) is a relative pathname. Thanks to trini@kernel.crashing.org for reporting this bug.
* add coverage for functions that should be called by this test caselarryh%netscape.com1999-04-132-1/+25
|
* Removed mozilla-specific library path components: bug #4450.srinivas%netscape.com1999-04-111-38/+2
|
* Added prstreams to DIRS.wtc%netscape.com1999-04-101-0/+4
|
* Bugzilla bug #4736: added dummy references to rcsid and sccsid sowtc%netscape.com1999-04-102-10/+30
| | | | that they aren't optimized away as unused variables.
* Fix thread-type rotation for Win95SeaMonkey_M4_BASElarryh%netscape.com1999-04-092-2/+2
|
* Symbols on NetBSD also have a leading underscore.RDF_19990407_BASEwtc%netscape.com1999-04-061-1/+1
| | | | This patch is contributed by gduzan@acm.org.
* The file type PR_DESC_SOCKET_POLL is not defined by NSPR.wtc%netscape.com1999-04-051-1/+2
|
* On Solaris, the prpoll test needs to link with -lsocket becausewtc%netscape.com1999-04-051-8/+11
| | | | | it calls BSD socket functions. Moved the rule for the attach test to be together with other tests that need to link with -lpthread.
* Made the i/o continuation thread ignore the events that havewtc%netscape.com1999-04-022-8/+51
| | | | | | been consumed by prior continuation function calls. (Bugsplat bug #345296) Modified files: primpl.h, ptio.c.
* The SocketPollFD functions are moved from public header(prio.h) to privatewtc%netscape.com1999-04-012-2/+2
| | | | header (pprio.h). The PRDescType is set to 0.
* Moved SocketPollFD functions from public header(prio.h) to this private header.wtc%netscape.com1999-04-011-0/+40
|
* Moved SocketPollFD functions from public header(prio.h) to the privatewtc%netscape.com1999-04-011-40/+1
| | | | header pprio.h.
* Fixed an error in the comments. (Bugzilla bug #346002)wtc%netscape.com1999-04-012-2/+2
| | | | Modified files: prsocket.c, ptio.c
* Name the third argument for PR_Writev 'iov_size', as opposedwtc%netscape.com1999-04-011-3/+5
| | | | to 'size'.
* Bugzilla bug #4297: the use of 'stack' as function arguments conflictswtc%netscape.com1999-04-011-3/+3
| | | | | | with the class name 'stack' in STL, so renamed it to 'fd_stack'. Thanks to joseph.gregorio@mts.com for reporting the problem and suggesting a fix.
* Bugzilla bug #4464: cast enum PRThreadPriority to PRIntn beforewtc%netscape.com1999-04-011-2/+2
| | | | | | doing comparisons so that enum PRThreadPriority is treated as a signed type. Thanks to Jeremy Lea <reg@shale.csir.co.za> for reporting this bug.
* Memory leak fixed. Thanks to: David Gardiner <david.gardiner@unisa.edu.aularryh%netscape.com1999-03-311-1/+1
|
* Added test cases for the new NSPR functions, PR_CreateSocketPollFd andwtc%netscape.com1999-03-301-94/+170
| | | | PR_DestroySocketPollFd.
* Defined a new IOMethods table to implement PR_CreateSocketPollFd andwtc%netscape.com1999-03-302-0/+146
| | | | PR_DestroySocketPollFd.
* Two new functions defined to enable polling native and NSPR FDs simultaneously.wtc%netscape.com1999-03-301-1/+40
|
* Use a default error-mapping function.wtc%netscape.com1999-03-291-1055/+355
| | | | This work is contributed by Nelson Bolyard <nelsonb@netscape.com>.
* Use a default error-mapping function.RDF_19990326_BASEwtc%netscape.com1999-03-251-1357/+594
| | | | This work is contributed by Nelson Bolyard <nelsonb@netscape.com>.
* Define HAVE_LONG_LONG for NetBSD on alpha, powerpc, and m68k.wtc%netscape.com1999-03-241-0/+6
|
* Renamed MOZ_PROF to MOZ_PROFILE.wtc%netscape.com1999-03-231-1/+1
|
* Restored the -D_THREAD_SAFE macro define that I incorrectly deletedwtc%netscape.com1999-03-231-0/+1
| | | | | | in the previous revision. The -pthread flag does not define _THREAD_SAFE. Thanks to Jeremy Lea <reg@shale.csir.co.za> for pointing this out.
* Merged a patch contributed by jon@eyrie.org (Jonathan Lennox).wtc%netscape.com1999-03-231-5/+2
|
* Don't need to link with -lc_r explicitly on FreeBSD. The -pthreadwtc%netscape.com1999-03-231-2/+1
| | | | flag takes care of that.
* Bugzilla bug #4176: _POSIX_THREAD_PRIORITY_SCHEDULING is the feature-testwtc%netscape.com1999-03-231-4/+1
| | | | | macro for pthread_attr_setscope. Thanks to jon@eyrie.org (Jonathan Lennox) for the patch.
* FreeBSD/Alpha port, contributed by Brian Ostrom <briano@netscape.com>.wtc%netscape.com1999-03-235-2/+69
| | | | | Modified files: FreeBSD.mk, gencfg.c, _freebsd.cfg, _freebsd.h, pr/tests/Makefile.
* Removed extraneous macro defines that are already definedwtc%netscape.com1999-03-221-2/+0
| | | | by the compiler.
* Merged NSPR patches for BSD/OS 4.0.1 + sparc, contributed bywtc%netscape.com1999-03-223-9/+84
| | | | | Kurt J. Lidl <lidl@eng.us.uu.net>. Modified files: BSD_OS.mk, _bsdi.cfg, _bsdi.h.
* Update from the internal CVS repository /m/src. Includes: firstwtc%netscape.com1999-03-1912-56/+248
| | | | cut at 64-bit AIX port.
* OS2 changeslarryh%netscape.com1999-03-181-6/+2
|\
| * fixup commit for tag 'NSPRPUB_RELEASE_3_1'NSPRPUB_RELEASE_3_1cvs2hg1999-03-174-446/+286
|/
* NSPR library name change (libnspr21 ==> libnspr3) andwtc%netscape.com1999-03-1710-72/+49
| | | | plevent.c.
* Fix for Mac OT bugs #2133, #2405, #2451, #2623, #3580 among others. Steve ↵SeaMonkey_M3_BASERDF_SCRIPTABLE_19990317_BASEgordon%netscape.com1999-03-144-286/+446
| | | | Dagley served as buddy for my changes. This is basically the first half of the redesign for Mac NSPR Sockets. Blocking mode or Server sockets remain to be implemented.