| Commit message (Expand) | Author | Age | Files | Lines |
* | Stop treating td_sigmask specially for the purposes of new thread | kib | 2012-05-26 | 1 | -1/+0 |
* | Fix panic, triggered like this: "int main() { thr_exit(); }" | trasz | 2012-04-17 | 1 | -1/+1 |
* | Add a new sched_clear_name() method to the scheduler interface to clear | jhb | 2012-03-08 | 1 | -0/+3 |
* | Document a large number of currently undocumented sysctls. While here | eadler | 2011-12-13 | 1 | -2/+2 |
* | Move cpu_set_upcall(newtd, td) up before the first call of | pho | 2011-12-09 | 1 | -2/+2 |
* | Use umtx_copyin_timeout() to copy and check timeout parameter. | pho | 2011-12-03 | 1 | -5/+1 |
* | Added check for negative seconds value. Found by syscall() fuzzing. | pho | 2011-11-18 | 1 | -1/+2 |
* | Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs. | ed | 2011-11-07 | 1 | -1/+2 |
* | In order to maximize the re-usability of kernel code in user space this | kmacy | 2011-09-16 | 1 | -9/+9 |
* | All the racct_*() calls need to happen with the proc locked. Fixing this | trasz | 2011-07-06 | 1 | -0/+4 |
* | Enable accounting for RACCT_NPROC and RACCT_NTHR. | trasz | 2011-03-31 | 1 | -5/+24 |
* | Move the max_threads_per_proc and max_threads_hits variables to the | kib | 2011-02-23 | 1 | -3/+11 |
* | Revert previous change, the existing check was correct. | jhb | 2011-02-23 | 1 | -1/+1 |
* | Fix off-by-one error in check against max_threads_per_proc. | jhb | 2011-02-23 | 1 | -1/+1 |
* | In thr_exit() and kthread_exit(), only remove thread from | davidxu | 2010-10-23 | 1 | -6/+7 |
* | - Don't include sx.h, it is not needed. | davidxu | 2010-10-20 | 1 | -12/+11 |
* | Create a global thread hash table to speed up thread lookup, use | davidxu | 2010-10-09 | 1 | -66/+61 |
* | Optimize thr_suspend, if timeout is zero, don't call msleep, just | davidxu | 2010-08-24 | 1 | -9/+14 |
* | - According to specification, SI_USER code should only be generated by | davidxu | 2010-08-24 | 1 | -2/+2 |
* | Tweak the in-kernel API for sending signals to threads: | jhb | 2010-06-29 | 1 | -5/+4 |
* | Provide groundwork for 32-bit binary compatibility on non-x86 platforms, | nwhitehorn | 2010-03-11 | 1 | -1/+1 |
* | Deliver siginfo when signal is generated by thr_kill(2) (SI_USER with properly | bruno | 2010-03-01 | 1 | -4/+17 |
* | Currently, when signal is delivered to the process and there is a thread | kib | 2009-10-11 | 1 | -1/+1 |
* | Reintroduce the r196640, after fixing the problem with my testing. | kib | 2009-09-01 | 1 | -1/+1 |
* | Reverse r196640 and r196644 for now. | kib | 2009-08-29 | 1 | -1/+1 |
* | Remove the altkstacks, instead instantiate threads with kernel stack | kib | 2009-08-29 | 1 | -1/+1 |
* | Replace AUDIT_ARG() with variable argument macros with a set more more | rwatson | 2009-06-27 | 1 | -2/+2 |
* | Remove even more unneeded variable assignments. | ed | 2009-02-26 | 1 | -3/+1 |
* | Add sv_flags field to struct sysentvec with intention to provide description | kib | 2008-11-22 | 1 | -3/+1 |
* | Revert rev 184216 and 184199, due to the way the thread_lock works, | davidxu | 2008-11-05 | 1 | -1/+2 |
* | If threads limit is exceeded, increase the totoal number | davidxu | 2008-10-29 | 1 | -1/+4 |
* | Actually, for signal and thread suspension, extra process spin lock is | davidxu | 2008-10-23 | 1 | -2/+1 |
* | Check the result of copyin and in a case of error | rdivacky | 2008-10-13 | 1 | -0/+2 |
* | Fix compiling problem. | davidxu | 2008-04-29 | 1 | -1/+1 |
* | Remove commented out code, thread suspension is done in thread library. | davidxu | 2008-03-23 | 1 | -2/+1 |
* | - Add a new td flag TDF_NEEDSUSPCHK that is set whenever a thread needs | jeff | 2008-03-21 | 1 | -0/+2 |
* | - Relax requirements for p_numthreads, p_threads, p_swtick, and p_nice from | jeff | 2008-03-19 | 1 | -2/+0 |
* | This time REALLY copy the name from the proc to the thread as a default. | julian | 2007-11-15 | 1 | -0/+1 |
* | Fix for the panic("vm_thread_new: kstack allocation failed") and | kib | 2007-11-05 | 1 | -0/+2 |
* | Add thr_kill2 syscall which sends a signal to a thread in another process. | davidxu | 2007-08-16 | 1 | -0/+55 |
* | - Remove unused variable from create_thread(). | jhb | 2007-06-07 | 1 | -2/+1 |
* | Commit 14/14 of sched_lock decomposition. | jeff | 2007-06-05 | 1 | -10/+13 |
* | - Remove setrunqueue and replace it with direct calls to sched_add(). | jeff | 2007-01-23 | 1 | -1/+1 |
* | Threading cleanup.. part 2 of several. | julian | 2006-12-06 | 1 | -35/+1 |
* | if a thread blocked on userland condition variable is | davidxu | 2006-12-04 | 1 | -0/+11 |
* | Update includes for sys/posix4 move. | trhodes | 2006-11-11 | 1 | -2/+1 |
* | Sweep kernel replacing suser(9) calls with priv(9) calls, assigning | rwatson | 2006-11-06 | 1 | -1/+2 |
* | Make KSE a kernel option, turned on by default in all GENERIC | jb | 2006-10-26 | 1 | -0/+24 |
* | Add compatible code to let 32bit libthr work on 64bit kernel. | davidxu | 2006-09-22 | 1 | -25/+64 |
* | Replace system call thr_getscheduler, thr_setscheduler, thr_setschedparam | davidxu | 2006-09-21 | 1 | -198/+21 |