Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make libc_r check the kern.usrstack sysctl instead of using internal | peter | 2001-10-26 | 1 | -3/+5 |
| | | | | | | | kernel #defines to figure out where the stack is located. This stops libc_r from exploding when the kernel is compiled with a different KVM size. IMHO this is all kinda bogus, it would be better to just check %esp and work from that. | ||||
* | Implement pthread_attr_[gs]etguardsize(). Non-default-size stacks used to | jasone | 2001-07-20 | 1 | -0/+235 |
be malloc()ed, but they are now allocated using mmap(), just as the default-size stacks are. A separate cache of stacks is kept for non-default-size stacks. Collaboration with: deischen |