syscalls.c (894b8f7afb9c58e1eb2c4c149ee4d765726b5ec6) syscalls.c (5214320f76a612f9b5b1543c1c210c5987304fcb)
1/*
2 * Copryight 1997 Sean Eric Fagan
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 60 unchanged lines hidden (view full) ---

69 { "fcntl", 1, 3,
70 { { Int, 0 } , { Fcntl, 1 }, { Hex, 2 }}},
71 { "readlink", 1, 3,
72 { { String, 0 } , { String | OUT, 1 }, { Int, 2 }}},
73 { "lseek", 2, 3,
74 { { Int, 0 }, {Quad, 2 }, { Int, 4 }}},
75 { "mmap", 2, 6,
76 { { Ptr, 0 }, {Int, 1}, {Mprot, 2}, {Mmapflags, 3}, {Int, 4}, {Quad, 6}}},
1/*
2 * Copryight 1997 Sean Eric Fagan
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 60 unchanged lines hidden (view full) ---

69 { "fcntl", 1, 3,
70 { { Int, 0 } , { Fcntl, 1 }, { Hex, 2 }}},
71 { "readlink", 1, 3,
72 { { String, 0 } , { String | OUT, 1 }, { Int, 2 }}},
73 { "lseek", 2, 3,
74 { { Int, 0 }, {Quad, 2 }, { Int, 4 }}},
75 { "mmap", 2, 6,
76 { { Ptr, 0 }, {Int, 1}, {Mprot, 2}, {Mmapflags, 3}, {Int, 4}, {Quad, 6}}},
77 { "mprotect", 1, 3,
78 { { Ptr, 0 }, {Int, 1}, {Mprot, 2}}},
77 { "open", 1, 3,
78 { { String | IN, 0} , { Hex, 1}, {Octal, 2}}},
79 { "linux_open", 1, 3,
80 { { String, 0 }, { Hex, 1}, { Octal, 2 }}},
81 { "close", 1, 1,
82 { { Int, 0 } } },
83 { "link", 0, 2,
84 { { String, 0 }, { String, 1 }}},

--- 457 unchanged lines hidden ---
79 { "open", 1, 3,
80 { { String | IN, 0} , { Hex, 1}, {Octal, 2}}},
81 { "linux_open", 1, 3,
82 { { String, 0 }, { Hex, 1}, { Octal, 2 }}},
83 { "close", 1, 1,
84 { { Int, 0 } } },
85 { "link", 0, 2,
86 { { String, 0 }, { String, 1 }}},

--- 457 unchanged lines hidden ---