<html lang='en'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>
GitLab
</title>
</meta>
</head>
<style>
  img {
    max-width: 100%;
    height: auto;
  }
  p.details {
    font-style:italic;
    color:#777
  }
  .footer p {
    font-size:small;
    color:#777
  }
  pre.commit-message {
    white-space: pre-wrap;
  }
  .file-stats a {
    text-decoration: none;
  }
  .file-stats .new-file {
    color: #090;
  }
  .file-stats .deleted-file {
    color: #B00;
  }}
</style>
<body>
<div class='content'>
<h3>Raymond Toy pushed to branch rtoy-unix-core at <a href="https://gitlab.common-lisp.net/cmucl/cmucl">cmucl / cmucl</a></h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/4de937f5310538e5342fa9ca2ff68dd31d3ceb8c">4de937f5</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-05-09T14:13:10Z</i>
</div>
<pre class='commit-message'>Clean up UNIX exports, putting common items together.</pre>
</li>
</ul>
<h4>1 changed file:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
src/code/exports.lisp
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/commit/4de937f5310538e5342fa9ca2ff68dd31d3ceb8c#diff-0'>
<strong>
src/code/exports.lisp
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/code/exports.lisp
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/code/exports.lisp
</span><span style="color: #aaaaaa">@@ -196,7 +196,6 @@
</span>      "NEGATE-BIGNUM" "SUBTRACT-BIGNUM"))
 
 (defpackage "UNIX"
<span style="color: #000000;background-color: #ffdddd">-  #-linux
</span>   (:export "UNIX-CURRENT-DIRECTORY"
           "UNIX-OPEN"
           "UNIX-READ"
<span style="color: #aaaaaa">@@ -225,7 +224,6 @@
</span>      "UNIX-GETTIMEOFDAY"
           "UNIX-ISATTY"
           "UNIX-MKDIR"
-          "UNIX-RMDIR"
           "UNIX-UNLINK"
           "TIMEZONE"
           "TIMEVAL"
<span style="color: #aaaaaa">@@ -234,7 +232,6 @@
</span>      "INO-T"
           "DEV-T"
           "TIME-T"
-          "TIME-T"
           "USER-INFO-NAME"
           "INT64-T"
           "MODE-T"
<span style="color: #aaaaaa">@@ -245,23 +242,18 @@
</span>      "UNIX-UID"
           "UNIX-GID"
           "GET-UNIX-ERROR-MSG"
-          "TCHARS"
           "WINSIZE"
-          "LTCHARS"
           "TIMEVAL"
           "CLOSE-DIR"
           "OPEN-DIR"
           "READ-DIR"
-          "D-NAMLEN"
-
           ;; filesys.lisp
           "UNIX-GETPWUID"
-          
<span style="color: #000000;background-color: #ddffdd">+
</span>      ;; multi-proc.lisp
           "UNIX-SETITIMER"
 
           ;; run-program.lisp
-          "SGTTYB"
           "UNIX-TTYNAME"
           "UNIX-IOCTL"
           "UNIX-OPENPTY"
<span style="color: #aaaaaa">@@ -285,16 +277,14 @@
</span>      "UNIX-SENDTO"
           "UNIX-SHUTDOWN"
           "UNIX-FCNTL"
-          
<span style="color: #000000;background-color: #ddffdd">+
</span>      ;; serve-event.lisp
           "FD-SETSIZE"
           "FD-ISSET"
           "FD-CLR"
 
           ;; Simple streams
-          "PROT_READ"
           "UNIX-MMAP"
-          "UNIX-MUNMAP"
           "UNIX-MSYNC"
 
           ;; Motif
<span style="color: #aaaaaa">@@ -304,6 +294,22 @@
</span>      "TERMIOS"
           "UNIX-TCGETATTR"
           "UNIX-TCSETATTR"
<span style="color: #000000;background-color: #ddffdd">+           )
+  #-linux
+  (:export "UNIX-RMDIR"
+          "TCHARS"
+          "LTCHARS"
+          "D-NAMLEN"
+
+          
+          ;; run-program.lisp
+          "SGTTYB"
+
+          ;; Simple streams
+          "PROT_READ"
+          "UNIX-MUNMAP"
+
+          ;; Hemlock
</span>      "UNIX-CFGETOSPEED"
           "UNIX-FCHMOD"
           "UNIX-CREAT"
<span style="color: #aaaaaa">@@ -659,113 +665,19 @@
</span>      "X_OK"
           )
   #+linux
<span style="color: #000000;background-color: #ffdddd">-  (:export "UNIX-CURRENT-DIRECTORY"
</span>-     "UNIX-OPEN"
-          "UNIX-READ"
-          "UNIX-WRITE"
-          "UNIX-GETPAGESIZE"
-          "UNIX-ERRNO"
-          "UNIX-MAYBE-PREPEND-CURRENT-DIRECTORY"
-          "UNIX-RESOLVE-LINKS"
-          "UNIX-SIMPLIFY-PATHNAME"
-          "UNIX-CLOSE"
-          "UNIX-STAT"
-          "UNIX-LSTAT"
-          "UNIX-FSTAT"
-          "UNIX-GETHOSTNAME"
-          "UNIX-LSEEK"
-          "UNIX-EXIT"
-          "UNIX-CHDIR"
-          "UNIX-ACCESS"
-          "UNIX-DUP"
-          "UNIX-CHMOD"
-          "UNIX-READLINK"
-          "UNIX-RENAME"
-          "UNIX-SELECT"
-          "UNIX-FAST-GETRUSAGE"
-          "UNIX-GETRUSAGE"
-          "UNIX-GETTIMEOFDAY"
-          "UNIX-ISATTY"
-          "UNIX-MKDIR"
-          "UNIX-RMDIR"
-          "UNIX-UNLINK"
-          "TIMEZONE"
-          "TIMEVAL"
-          "SIZE-T"
-          "OFF-T"
-          "INO-T"
-          "DEV-T"
-          "TIME-T"
-          "TIME-T"
-          "USER-INFO-NAME"
-          "INT64-T"
-          "MODE-T"
-          "UNIX-FAST-SELECT"
-          "UNIX-PIPE"
-          "UNIX-GETPID"
-          "UNIX-GETHOSTID"
-          "UNIX-UID"
-          "UNIX-GID"
-          "GET-UNIX-ERROR-MSG"
<span style="color: #000000;background-color: #ddffdd">+  (:export "UNIX-RMDIR"
</span>      "TCHARS"
-          "WINSIZE"
           "LTCHARS"
-          "TIMEVAL"
-          "CLOSE-DIR"
-          "OPEN-DIR"
-          "READ-DIR"
           "D-NAMLEN"
 
-          ;; filesys.lisp
-          "UNIX-GETPWUID"
-          
-          ;; multi-proc.lisp
-          "UNIX-SETITIMER"
-
           ;; run-program.lisp
           "SGTTYB"
-          "UNIX-TTYNAME"
-          "UNIX-IOCTL"
-          "UNIX-OPENPTY"
-
-          ;; alien-callback.lisp
-          "UNIX-MPROTECT"
-
-          ;; internet.lisp
-          "UNIX-SOCKET"
-          "UNIX-CONNECT"
-          "UNIX-BIND"
-          "UNIX-LISTEN"
-          "UNIX-ACCEPT"
-          "UNIX-GETSOCKOPT"
-          "UNIX-SETSOCKOPT"
-          "UNIX-GETPEERNAME"
-          "UNIX-GETSOCKNAME"
-          "UNIX-RECV"
-          "UNIX-SEND"
-          "UNIX-RECVFROM"
-          "UNIX-SENDTO"
-          "UNIX-SHUTDOWN"
-          "UNIX-FCNTL"
-          
-          ;; serve-event.lisp
-          "FD-SETSIZE"
-          "FD-ISSET"
-          "FD-CLR"
 
           ;; Simple streams
           "PROT_READ"
-          "UNIX-MMAP"
           "UNIX-MUNMAP"
-          "UNIX-MSYNC"
-
-          ;; Motif
-          "UNIX-GETUIO"
 
           ;; Hemlock
-          "TERMIOS"
-          "UNIX-TCGETATTR"
-          "UNIX-TCSETATTR"
           "UNIX-CFGETOSPEED"
           "UNIX-FCHMOD"
           "UNIX-CREAT"
</code></pre>

<br>
</li>

</div>
<div class='footer' style='margin-top: 10px;'>
<p>

<br>
<a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/4de937f5310538e5342fa9ca2ff68dd31d3ceb8c">View it on GitLab</a>
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Commit","url":"https://gitlab.common-lisp.net/cmucl/cmucl/commit/4de937f5310538e5342fa9ca2ff68dd31d3ceb8c"}}</script>
</p>
</div>
</body>
</html>