diff options
author | Taru Karttunen <taruti@taruti.net> | 2011-03-30 15:46:40 +0300 |
---|---|---|
committer | Taru Karttunen <taruti@taruti.net> | 2011-03-30 15:46:40 +0300 |
commit | e5888a1ffdae813d7575f5fb02275c6bb07e5199 (patch) | |
tree | d8d51eac403f07814b9e936eed0c9a79195e2450 /sys/src/cmd/cec/utils.c |
Import sources from 2011-03-30 iso image
Diffstat (limited to 'sys/src/cmd/cec/utils.c')
-rwxr-xr-x | sys/src/cmd/cec/utils.c | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/sys/src/cmd/cec/utils.c b/sys/src/cmd/cec/utils.c new file mode 100755 index 000000000..483b41d32 --- /dev/null +++ b/sys/src/cmd/cec/utils.c @@ -0,0 +1,52 @@ +#include <u.h> +#include <libc.h> +#include "cec.h" + +static int fd = -1; +extern char *svc; + +void +rawon(void) +{ + if(svc) + return; + if((fd = open("/dev/consctl", OWRITE)) == -1 || + write(fd, "rawon", 5) != 5) + fprint(2, "Can't make console raw\n"); +} + +void +rawoff(void) +{ + if(svc) + return; + close(fd); +} + +enum { + Perline = 16, + Perch = 3, +}; + +char line[Perch*Perline+1]; + +static void +format(uchar *buf, int n, int t) +{ + int i, r; + + for(i = 0; i < n; i++){ + r = (i + t) % Perline; + if(r == 0 && i + t > 0) + fprint(2, "%s\n", line); + sprint(line + r*Perch, "%.2x ", buf[i]); + } +} + +void +dump(uchar *p, int n) +{ + format(p, n, 0); + if(n % 16 > 0) + print("%s\n", line); +} |