diff options
| author | bhgv <bhgv.empire@gmail.com> | 2019-03-06 02:50:05 +0300 |
|---|---|---|
| committer | bhgv <bhgv.empire@gmail.com> | 2019-03-06 02:50:05 +0300 |
| commit | d1a1a29bd5779e3a7e0d6ac4a6572eda5b28a943 (patch) | |
| tree | 77264b473051fc6569dc4e30c609804d725c37b2 /os | |
| parent | c8a8f18fa610d27eb73d1d79a5f9f6a306fdf225 (diff) | |
Linux-Framebuffer graphics output was added. now no X needed for Inferno-graphics/GUI.
Diffstat (limited to 'os')
| -rw-r--r-- | os/port/sysfile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/port/sysfile.c b/os/port/sysfile.c index 6f73da2..143d29d 100644 --- a/os/port/sysfile.c +++ b/os/port/sysfile.c @@ -106,6 +106,7 @@ kchanio(void *vc, void *buf, int n, int mode) r = devtab[c->type]->read(c, buf, n, c->offset); else r = devtab[c->type]->write(c, buf, n, c->offset); +printf("%s:%d mode=%d, r=%d\n", __func__, __LINE__, mode, r); lock(c); c->offset += r; |
