aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/sync.c
Commit message (Collapse)AuthorAge
* litmus core: report ready tasks to user spaceBjoern B. Brandenburg2009-05-02
|
* 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.
* LITMUS: remove trailing whitespace for release2008.2Bjoern B. Brandenburg2008-12-01
|
* sched_trace: add task system release tracingBjoern B. Brandenburg2008-11-03
|
* introduce release_at callback to LITMUS plugin interfaceBjoern B. Brandenburg2008-05-12
| | | | | PFAIR needs to do things a bit differently. This callback will allow plugins to handle synchronous releases differently.
* LITMUS: provide more debug infoBjoern B. Brandenburg2008-05-03
| | | | Added one message and improved another.
* LITMUS: use litmus_clock() in sync.cBjoern B. Brandenburg2008-05-01
| | | | | sched_clock() is offset from litmus_clock(), jobs were being delayed for long times.
* return the number of released tasksBjoern B. Brandenburg2008-05-01
|
* litmus: synchronous task release APIBjoern B. Brandenburg2008-02-19
This adds the internals for two new systems calls: - sys_wait_for_ts_release() - sys_release_ts() The first system call suspends a task until the task systems is released with the second system call.