summaryrefslogtreecommitdiff
path: root/sys/src/libthread/chanprint.c
diff options
context:
space:
mode:
authorTaru Karttunen <taruti@taruti.net>2011-03-30 15:46:40 +0300
committerTaru Karttunen <taruti@taruti.net>2011-03-30 15:46:40 +0300
commite5888a1ffdae813d7575f5fb02275c6bb07e5199 (patch)
treed8d51eac403f07814b9e936eed0c9a79195e2450 /sys/src/libthread/chanprint.c
Import sources from 2011-03-30 iso image
Diffstat (limited to 'sys/src/libthread/chanprint.c')
-rwxr-xr-xsys/src/libthread/chanprint.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/src/libthread/chanprint.c b/sys/src/libthread/chanprint.c
new file mode 100755
index 000000000..781c6f6fa
--- /dev/null
+++ b/sys/src/libthread/chanprint.c
@@ -0,0 +1,20 @@
+#include <u.h>
+#include <libc.h>
+#include <thread.h>
+
+int
+chanprint(Channel *c, char *fmt, ...)
+{
+ va_list arg;
+ char *p;
+ int n;
+
+ va_start(arg, fmt);
+ p = vsmprint(fmt, arg);
+ va_end(arg);
+ if(p == nil)
+ sysfatal("vsmprint failed: %r");
+ n = sendp(c, p);
+ yield(); /* let recipient handle message immediately */
+ return n;
+}