Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | litmus core: report ready tasks to user space | Bjoern B. Brandenburg | 2009-05-02 |
| | |||
* | fixed sizeof usage to conform to linux kernel coding style. so, | Mitchell Jareo | 2009-03-01 |
| | | | | | | | | struct x* p = kmalloc(sizeof(struct x), ....) becomes struct x* p = kmalloc(sizeof(*p), ...) for example. | ||
* | LITMUS: remove trailing whitespace for release2008.2 | Bjoern B. Brandenburg | 2008-12-01 |
| | |||
* | sched_trace: add task system release tracing | Bjoern B. Brandenburg | 2008-11-03 |
| | |||
* | introduce release_at callback to LITMUS plugin interface | Bjoern B. Brandenburg | 2008-05-12 |
| | | | | | PFAIR needs to do things a bit differently. This callback will allow plugins to handle synchronous releases differently. | ||
* | LITMUS: provide more debug info | Bjoern B. Brandenburg | 2008-05-03 |
| | | | | Added one message and improved another. | ||
* | LITMUS: use litmus_clock() in sync.c | Bjoern B. Brandenburg | 2008-05-01 |
| | | | | | sched_clock() is offset from litmus_clock(), jobs were being delayed for long times. | ||
* | return the number of released tasks | Bjoern B. Brandenburg | 2008-05-01 |
| | |||
* | litmus: synchronous task release API | Bjoern B. Brandenburg | 2008-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. |