aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/fmlp.c
Commit message (Collapse)AuthorAge
* fixed sizeof usage to conform to linux kernel coding style. so,Mitchell Jareo2009-03-01
| | | | | | | | struct x* p = kmalloc(sizeof(struct x), ....) becomes struct x* p = kmalloc(sizeof(*p), ...) for example.
* compile without FMLP support if it is disabledBjoern B. Brandenburg2008-07-01
|
* FMLP: rename pi->fmlpBjoern B. Brandenburg2008-05-01
| | | | | pi is confusing, there are many PI schemes in the world. We implement the FMLP, thus we should label it as such.
* SRP+FMLP: reorganize codeBjoern B. Brandenburg2008-05-01
- split SRP into its own file - rename litmus_sem.c to fmlp.c, since that is what it is