]> git.ozlabs.org Git - ccan/blob - ccan/lbalance/_info
c0d0ab0e5a4fa7fb362b0ebb8a0a15da53ee9627
[ccan] / ccan / lbalance / _info
1 #include "config.h"
2 #include <string.h>
3
4 /**
5  * lbalance - helpers for loadbalancing parallel tasks
6  *
7  * This code helps when you have a large number of one-shot tasks; it tries
8  * to determine the maximum amount of useful parallelism.
9  *
10  * License: GPL
11  * Author: Rusty Russell <rusty@rustcorp.com.au>
12  */
13 int main(int argc, char *argv[])
14 {
15         /* Expect exactly one argument */
16         if (argc != 2)
17                 return 1;
18
19         if (strcmp(argv[1], "depends") == 0) {
20                 printf("ccan/tlist\n");
21                 return 0;
22         }
23
24         return 1;
25 }