Compare commits

..

No commits in common. "ac66f293ec5bbe644db14020d714628f6435b69b" and "272b12a14292bdf23f0e409db366fb9a1c910b30" have entirely different histories.

38 changed files with 7 additions and 39 deletions

View File

@ -1,4 +1,4 @@
#!/bin/execlineb -P #!/usr/bin/execlineb -P
pipeline -dw -- pipeline -dw --
{ {
if -- if --

View File

@ -1,4 +1,4 @@
#!/bin/execlineb -P #!/usr/bin/execlineb -P
fdmove -c 2 1 fdmove -c 2 1
fdmove 1 3 fdmove 1 3
s6-ipcserver-socketbinder -- s s6-ipcserver-socketbinder -- s

View File

@ -1,3 +1,3 @@
#!/bin/execlineb -P #!/usr/bin/execlineb -P
s6-fdholder-retrieve ../s6rc-fdholder/s "pipe:s6rc-r-udevd-log" s6-fdholder-retrieve ../s6rc-fdholder/s "pipe:s6rc-r-udevd-log"
./run.user ./run.user

View File

@ -1,4 +1,4 @@
#!/bin/execlineb -P #!/usr/bin/execlineb -P
fdmove 1 0 fdmove 1 0
s6-fdholder-retrieve ../s6rc-fdholder/s "pipe:s6rc-w-udevd-log" s6-fdholder-retrieve ../s6rc-fdholder/s "pipe:s6rc-w-udevd-log"
fdswap 0 1 fdswap 0 1

View File

@ -1 +0,0 @@
0

View File

@ -1 +0,0 @@
0

View File

@ -60,10 +60,11 @@ int main(int argc, char *argv[]) {
rewinddir(d); rewinddir(d);
char *data = strdup(datadir); char *data = strdup(datadir);
time_t t;
srand((unsigned)time(NULL)); srand((unsigned)time(&t));
int m = rand() % (n - 1); int m = rand() % n;
strncat(data, filesList[m], 4); strncat(data, filesList[m], 4);
FILE *fp; FILE *fp;
char *line = NULL; char *line = NULL;