Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change callers of mtx_init() to pass in an appropriate lock type name. In | jhb | 2002-04-04 | 1 | -1/+1 |
| | | | | | | | most cases NULL is passed, but in some cases such as network driver locks (which use the MTX_NETWORK_LOCK macro) and UMA zone locks, a name is used. Tested on: i386, alpha, sparc64 | ||||
* | Repeat after me -- "Use of ANSI string concatenation can be bad." | obrien | 2001-12-10 | 1 | -8/+8 |
| | | | | | | | | In this case, C99's __func__ is properly defined as: static const char __func__[] = "function-name"; and GCC 3.1 will not allow it to be used in bogus string concatenation. | ||||
* | Implement kernel semaphores. | jasone | 2001-08-14 | 1 | -0/+177 |
Reviewed by: jhb |