summaryrefslogtreecommitdiff
path: root/sys/src/games/music/playlistfs/playplumb.c
blob: 2533359abbf53bfb42bba51a7c728bdad01de02a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <u.h>
#include <libc.h>

void
main(int argc, char *argv[])
{
	Plumbmsg *m;
	int fd;

	fd = plumbopen("audioplay", OREAD);
	if (fd < 0)
		sysfatal("port audioplay: %r");
	for (;;) {
		m = plumbrecv(fd);
		if (m == nil)
			sysfatal("plumrecv: %r");
		
		plumbfree(m);
	}
}