summaryrefslogtreecommitdiffstats
path: root/source/utils
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-07-16 06:32:35 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:38:10 -0500
commit8c6088f2bd0a5e3a854a31fe428d841d61055a30 (patch)
tree5010a76b40954c0bd342ab54254283097bb04608 /source/utils
parent03e9924f5c82537ca72c03e3b0f70ea002e76934 (diff)
downloadsamba-8c6088f2bd0a5e3a854a31fe428d841d61055a30.tar.gz
samba-8c6088f2bd0a5e3a854a31fe428d841d61055a30.tar.xz
samba-8c6088f2bd0a5e3a854a31fe428d841d61055a30.zip
r17077: Activate RPC-SAMBA3-GETUSERNAME in the build farm
Diffstat (limited to 'source/utils')
-rw-r--r--source/utils/net.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/source/utils/net.c b/source/utils/net.c
index 8b4fb042fcf..b09b46d6af9 100644
--- a/source/utils/net.c
+++ b/source/utils/net.c
@@ -796,9 +796,45 @@ static int net_maxrid(int argc, const char **argv)
return 0;
}
+#include "/data/pth-2.0.7/include/pth.h"
+
+static void *thread_routine(void *arg)
+{
+ d_printf("In thread\n");
+ return arg;
+}
+
+static int net_pthtest(int argc, const char **argv)
+{
+ int res;
+ void *x;
+ pth_t t;
+ pth_attr_t t_attr;
+
+ if ((res = pth_init()) < 0) {
+ d_printf("pth_init failed: %d\n", res);
+ return -1;
+ }
+
+ t_attr = pth_attr_new();
+
+ if (!(t = pth_spawn(t_attr, thread_routine, &res))) {
+ d_printf("pth_spawn failed\n");
+ return -1;
+ }
+
+ if ((res = pth_join(t, &x)) < 0) {
+ d_printf("pth_join failed\n");
+ return -1;
+ }
+
+ return 0;
+}
+
/* main function table */
static struct functable net_func[] = {
{"RPC", net_rpc},
+ {"PTH", net_pthtest},
{"RAP", net_rap},
{"ADS", net_ads},