aboutsummaryrefslogtreecommitdiff
path: root/std/io.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-03-01 14:11:38 -0700
committerAndrew Kelley <superjoe30@gmail.com>2016-03-01 14:11:38 -0700
commit9c3d7b628c0b32d7276e4dc33e2e6f306af87472 (patch)
tree355f70fbea55a26a035ac91ffaf9f58435642dd5 /std/io.zig
parent1d08ab087e60299a061c39fdb23903a43f12692c (diff)
downloadzig-9c3d7b628c0b32d7276e4dc33e2e6f306af87472.tar.gz
zig-9c3d7b628c0b32d7276e4dc33e2e6f306af87472.zip
rename syscall.zig to linux.zig
Diffstat (limited to 'std/io.zig')
-rw-r--r--std/io.zig26
1 files changed, 13 insertions, 13 deletions
diff --git a/std/io.zig b/std/io.zig
index 272459e4e7..a653a8c8e9 100644
--- a/std/io.zig
+++ b/std/io.zig
@@ -1,4 +1,4 @@
-const syscall = @import("syscall.zig");
+const linux = @import("linux.zig");
const errno = @import("errno.zig");
const math = @import("math.zig");
@@ -105,7 +105,7 @@ pub struct OutStream {
}
pub fn flush(os: &OutStream) -> %void {
- const amt_written = syscall.write(os.fd, &os.buffer[0], os.index);
+ const amt_written = linux.write(os.fd, &os.buffer[0], os.index);
os.index = 0;
if (amt_written < 0) {
return switch (-amt_written) {
@@ -123,12 +123,12 @@ pub struct OutStream {
}
pub fn close(os: &OutStream) -> %void {
- const closed = close(os.fd);
+ const closed = linux.close(os.fd);
if (closed < 0) {
return switch (-closed) {
- EIO => error.Io,
- EBADF => error.BadFd,
- EINTR => error.SigInterrupt,
+ errno.EIO => error.Io,
+ errno.EBADF => error.BadFd,
+ errno.EINTR => error.SigInterrupt,
else => error.Unexpected,
}
}
@@ -139,7 +139,7 @@ pub struct InStream {
fd: isize,
pub fn read(is: &InStream, buf: []u8) -> %isize {
- const amt_read = syscall.read(is.fd, &buf[0], buf.len);
+ const amt_read = linux.read(is.fd, &buf[0], buf.len);
if (amt_read < 0) {
return switch (-amt_read) {
errno.EINVAL => unreachable{},
@@ -154,12 +154,12 @@ pub struct InStream {
}
pub fn close(is: &InStream) -> %void {
- const closed = close(is.fd);
+ const closed = linux.close(is.fd);
if (closed < 0) {
return switch (-closed) {
- EIO => error.Io,
- EBADF => error.BadFd,
- EINTR => error.SigInterrupt,
+ errno.EIO => error.Io,
+ errno.EBADF => error.BadFd,
+ errno.EINTR => error.SigInterrupt,
else => error.Unexpected,
}
}
@@ -168,8 +168,8 @@ pub struct InStream {
#attribute("cold")
pub fn abort() -> unreachable {
- syscall.raise(syscall.SIGABRT);
- syscall.raise(syscall.SIGKILL);
+ linux.raise(linux.SIGABRT);
+ linux.raise(linux.SIGKILL);
while (true) {}
}