repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduce pet-projects dir
[lcapit-junk-code.git]
/
sched-slice-oops.c
blob
6633aff0bacf5d21755eb961dd92cfa8bf2e7ee7
1
/* This program used to crash 2.6.24-rc kernels.
2
*
3
* See commit 77034937dc4575ca0a76bf209838ecd39e804089 in Linus' tree.
4
*
5
* Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>
6
*/
7
#include <stdio.h>
8
#include <sched.h>
9
10
int
main
(
void
)
11
{
12
sched_rr_get_interval
(
1
,
NULL
);
13
return
0
;
14
}