summaryrefslogtreecommitdiff
path: root/lib/libc/gmon
AgeCommit message (Collapse)Author
1999-07-09- remove all trailing whitespaceAaron Campbell
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
1999-05-23remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonAaron Campbell
is used instead; kwesterback@home.com
1998-11-20Add thread-safety to libc, so that libc_r will build (on i386 at least).David Leonard
All POSIX libc api now there (to P1003.1c/D10) (more md stuff is needed for other libc/arch/*) (setlogin is no longer a special syscall) Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS). Doc some re-entrant routines Add libc_r to intro(3) dig() uses some libc srcs and an extra -I was needed there. Add more md stuff to libc_r. Update includes for the pthreads api Update libc_r TODO
1998-08-29man page repairs; aaron@ug.cs.dal.caTheo de Raadt
1998-07-15make that 0664 until we find out why umask is not being appliedTodd C. Miller
1998-07-15open gmon.out mode 0644, not 0666Todd C. Miller
1998-07-05use STDERR_FILENO; kleinkTheo de Raadt
1997-07-23tabify + trailing blankskstailey
1997-01-30proto; felix@mamba.pond.sub.orgTheo de Raadt
1996-09-15Remove dead codeThorsten Lockert
Remove unused variables Silence some warnings lint(1) is your friend
1996-09-05protect getenv, do not oflow, fix unused debug; bitblt and deraadtTheo de Raadt
1996-08-19Fix RCS idsThorsten Lockert
Make sure everything uses {SYS,}LIBC_SCCS properly
1996-06-18use p->hashfraction when doing non-time-critical calculations, rather thanTheo de Raadt
using HASHFRACTION directly. in time-critical calculations, if HASHFRACTION is a power of two, check that p->hashfraction == HASHFRACTION and if so do the calculation with the compiled-in value so that the compiler can optimize out (potentially) expensive divisions. if p->hashfraction != HASHFRACTION, actually do the division. This has the result that on machines with slow division, the division can be optimized out of the common case, but that if HASHFRACTION changes from the compiled-in value (for whatever reason), profiling will still work. Changes suggested by Chris Torek.
1996-03-25Protect internal mcount symbol from lint(1)Thorsten Lockert
Use __asm, not asm
1995-12-14from cgd@netbsd:Theo de Raadt
kill a gratuitous cast of lowpc to an int Add support for PROFDIR environment variable
1995-10-18initial import of NetBSD treeTheo de Raadt