SCM_SYSCALL       235 ext/auxsys/auxsyslib.c int r; SCM_SYSCALL(r, gettimeofday(&tv, NULL));
SCM_SYSCALL       265 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, mkfifo(path, mode));
SCM_SYSCALL       306 ext/auxsys/auxsyslib.c   SCM_SYSCALL(r, utime(path, NULL));
SCM_SYSCALL       310 ext/auxsys/auxsyslib.c   SCM_SYSCALL(r, utime(path, &tim));
SCM_SYSCALL       332 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, setgid(gid));
SCM_SYSCALL       360 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, setpgid(pid, pgid));
SCM_SYSCALL       383 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, (int)getpgid(pid));
SCM_SYSCALL       401 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, (int)getpgrp());
SCM_SYSCALL       419 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, setsid());
SCM_SYSCALL       442 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, setuid(uid));
SCM_SYSCALL       563 ext/auxsys/auxsyslib.c SCM_SYSCALL(r, gethostname(buf, HOSTNAMELEN));
SCM_SYSCALL       583 ext/auxsys/auxsyslib.c SCM_SYSCALL(r, getdomainname(buf, HOSTNAMELEN));
SCM_SYSCALL       716 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, chown(path, owner, group));
SCM_SYSCALL       749 ext/auxsys/auxsyslib.c SCM_SYSCALL(SCM_RESULT, lchown(path, owner, group));
SCM_SYSCALL       152 ext/fcntl/fcntl.c         SCM_SYSCALL(r, fcntl(fd, op));
SCM_SYSCALL       174 ext/fcntl/fcntl.c         SCM_SYSCALL(r, fcntl(fd, op, Scm_GetInteger(arg)));
SCM_SYSCALL       185 ext/fcntl/fcntl.c         SCM_SYSCALL(r, fcntl(fd, op, &fl->lock));
SCM_SYSCALL       107 ext/net/net.c      SCM_SYSCALL(sock, socket(domain, type, protocol));
SCM_SYSCALL       118 ext/net/net.c      SCM_SYSCALL(r, shutdown(s->fd, how));
SCM_SYSCALL       205 ext/net/net.c      SCM_SYSCALL(r, bind(sock->fd, &addr->addr, addr->addrlen));
SCM_SYSCALL       214 ext/net/net.c      SCM_SYSCALL(r, getsockname(sock->fd, &naddr->addr, &naddr->addrlen));
SCM_SYSCALL       229 ext/net/net.c      SCM_SYSCALL(r, listen(sock->fd, backlog));
SCM_SYSCALL       248 ext/net/net.c      SCM_SYSCALL(newfd, accept(sock->fd, (struct sockaddr *)addrbuf, &addrlen));
SCM_SYSCALL       271 ext/net/net.c      SCM_SYSCALL(r, connect(sock->fd, &addr->addr, addr->addrlen));
SCM_SYSCALL       289 ext/net/net.c      SCM_SYSCALL(r, getsockname(sock->fd, (struct sockaddr *)addrbuf, &addrlen));
SCM_SYSCALL       305 ext/net/net.c      SCM_SYSCALL(r, getpeername(sock->fd, (struct sockaddr *)addrbuf, &addrlen));
SCM_SYSCALL       320 ext/net/net.c      SCM_SYSCALL(r, send(sock->fd, cmsg, size, flags));
SCM_SYSCALL       336 ext/net/net.c      SCM_SYSCALL(r, sendto(sock->fd, cmsg, size, flags,
SCM_SYSCALL       352 ext/net/net.c      SCM_SYSCALL(r, recv(sock->fd, buf, bytes, flags));
SCM_SYSCALL       369 ext/net/net.c      SCM_SYSCALL(r, recvfrom(sock->fd, buf, bytes, flags, &from, &fromlen));
SCM_SYSCALL       393 ext/net/net.c          SCM_SYSCALL(r, setsockopt(s->fd, level, option, cvalue, size));
SCM_SYSCALL       396 ext/net/net.c          SCM_SYSCALL(r, setsockopt(s->fd, level, option, &v, sizeof(int)));
SCM_SYSCALL       413 ext/net/net.c          SCM_SYSCALL(r, getsockopt(s->fd, level, option, buf, &rrsize));
SCM_SYSCALL       419 ext/net/net.c          SCM_SYSCALL(r, getsockopt(s->fd, level, option, &val, &rrsize));
SCM_SYSCALL       254 src/port.c             SCM_SYSCALL(r, select(fd+1, NULL, &fds, NULL, &tm));
SCM_SYSCALL       256 src/port.c             SCM_SYSCALL(r, select(fd+1, &fds, NULL, NULL, &tm));
SCM_SYSCALL       770 src/port.c             SCM_SYSCALL(r, read(fd, datptr, cnt-nread));
SCM_SYSCALL       796 src/port.c             SCM_SYSCALL(r, write(fd, datptr, datsiz-nwrote));
SCM_SYSCALL       308 src/prof.c         SCM_SYSCALL(off, lseek(vm->prof->samplerFd, 0, SEEK_SET));
SCM_SYSCALL       981 src/syslib.c   int r; SCM_SYSCALL(r, kill(pid, sig));
SCM_SYSCALL      1109 src/syslib.c     SCM_SYSCALL(r, remove(filename));
SCM_SYSCALL      1141 src/syslib.c     SCM_SYSCALL(r, rename(oldname, newname));
SCM_SYSCALL      1158 src/syslib.c     SCM_SYSCALL(fd, mkstemp(nam));
SCM_SYSCALL      1241 src/syslib.c   SCM_SYSCALL(SCM_RESULT, system(command));
SCM_SYSCALL      1327 src/syslib.c     SCM_SYSCALL(r, stat(path, &s->statrec));
SCM_SYSCALL      1348 src/syslib.c     SCM_SYSCALL(r, lstat(path, &s->statrec));
SCM_SYSCALL      1369 src/syslib.c     SCM_SYSCALL(r, fstat(fd, &s->statrec));
SCM_SYSCALL      1848 src/syslib.c   SCM_SYSCALL(r, access(pathname, amode));
SCM_SYSCALL      1869 src/syslib.c   int r; SCM_SYSCALL(r, chdir(pathname));
SCM_SYSCALL      1896 src/syslib.c   int r; SCM_SYSCALL(r, chmod(pathname, mode));
SCM_SYSCALL      1915 src/syslib.c   SCM_SYSCALL(pid, fork());
SCM_SYSCALL      2121 src/syslib.c   int r; SCM_SYSCALL(r, link(existing, newpath));
SCM_SYSCALL      2158 src/syslib.c   SCM_SYSCALL(SCM_RESULT, alarm(seconds));
SCM_SYSCALL      2194 src/syslib.c   SCM_SYSCALL(r, pipe(fds));
SCM_SYSCALL      2223 src/syslib.c   SCM_SYSCALL(r, close(fd));
SCM_SYSCALL      2252 src/syslib.c   SCM_SYSCALL(r, mkdir(pathname, mode));
SCM_SYSCALL      2254 src/syslib.c   SCM_SYSCALL(r, mkdir(pathname));
SCM_SYSCALL      2277 src/syslib.c   int r; SCM_SYSCALL(r, rmdir(pathname));
SCM_SYSCALL      2375 src/syslib.c   int r; SCM_SYSCALL(r, unlink(pathname));
SCM_SYSCALL      2446 src/syslib.c   int r; SCM_SYSCALL(r, truncate(path, Scm_IntegerToOffset(length)));
SCM_SYSCALL      2473 src/syslib.c   SCM_SYSCALL(r, ftruncate(fd, Scm_IntegerToOffset(length)));
SCM_SYSCALL      2529 src/syslib.c     SCM_SYSCALL(r, symlink(existing, newpath));
SCM_SYSCALL      2557 src/syslib.c     SCM_SYSCALL(n, readlink(path, buf, READLINK_PATH_MAX));
SCM_SYSCALL       193 src/system.c       SCM_SYSCALL(r, glob(Scm_GetStringConst(pattern), 0, NULL, &globbed));
SCM_SYSCALL       555 src/system.c       SCM_SYSCALL(fd, mkstemp(templat));
SCM_SYSCALL       577 src/system.c   	    SCM_SYSCALL(fd, open(templat, flags, 0600));
SCM_SYSCALL       760 src/system.c       SCM_SYSCALL(r, gettimeofday(&tv, NULL));
SCM_SYSCALL      1244 src/system.c           SCM_SYSCALL(pid, fork());
SCM_SYSCALL      1375 src/system.c       SCM_SYSCALL(numfds,