* perftest event source will go here
authorMichal Voců <michal@ruk.cuni.cz>
Fri, 12 May 2006 12:42:46 +0000 (12:42 +0000)
committerMichal Voců <michal@ruk.cuni.cz>
Fri, 12 May 2006 12:42:46 +0000 (12:42 +0000)
org.glite.lb.client/src/perftest_logjobs.c [new file with mode: 0644]

diff --git a/org.glite.lb.client/src/perftest_logjobs.c b/org.glite.lb.client/src/perftest_logjobs.c
new file mode 100644 (file)
index 0000000..39d5e70
--- /dev/null
@@ -0,0 +1,31 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+#include <errno.h>
+#include <fcntl.h>
+
+extern int edg_wll_DoLogEvent(edg_wll_Context context, edg_wll_LogLine logline);
+extern int edg_wll_DoLogEventProxy(edg_wll_Context context, edg_wll_LogLine logline);
+
+extern char *optarg;
+extern int opterr,optind;
+
+static struct option const long_options[] {
+               {"dst", required_arg, NULL, 0},
+               {
+               {NULL, 0, NULL, 0}
+};
+
+
+void
+print_usage(char *name)
+{
+       fprintf(stderr, "Usage: %s \n", name);
+}
+
+
+int
+main(int argc, char *argv[])
+{
+}