]> git.ozlabs.org Git - ccan/blob - ccan/antithread/_info
tdb: enforce hashing, via example hash in old rwlocks entry in header.
[ccan] / ccan / antithread / _info
1 #include <stdio.h>
2 #include <string.h>
3 #include "config.h"
4
5 /**
6  * antithread - Accelerated Native Technology Implementation of "threads"
7  *
8  * Threads suck.  Antithreads try not to.  FIXME.
9  *
10  * Licence: LGPL (2 or any later version)
11  * Author: Rusty Russell <rusty@rustcorp.com.au>
12  */
13 int main(int argc, char *argv[])
14 {
15         if (argc != 2)
16                 return 1;
17
18         if (strcmp(argv[1], "depends") == 0) {
19                 printf("ccan/talloc\n");
20                 printf("ccan/alloc\n");
21                 printf("ccan/noerr\n");
22                 printf("ccan/read_write_all\n"); /* For tests */
23                 return 0;
24         }
25
26         return 1;
27 }