<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/8a9a7ae2a692430b069b307a0993113f9f287229">8a9a7ae2</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-05-10T09:43:23Z</i>
</div>
<pre class='commit-message'>unix-glibc2 needs unix-munmap.  prot_read is available for both.</pre>
</li>
</ul>
<h4>2 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
src/code/exports.lisp
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
src/code/unix-glibc2.lisp
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/commit/8a9a7ae2a692430b069b307a0993113f9f287229#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">@@ -284,7 +284,9 @@
</span>      "FD-CLR"
 
           ;; Simple streams
<span style="color: #000000;background-color: #ddffdd">+           "PROT_READ"
</span>      "UNIX-MMAP"
<span style="color: #000000;background-color: #ddffdd">+           "UNIX-MUNMAP"
</span>      "UNIX-MSYNC"
 
           ;; Motif
<span style="color: #aaaaaa">@@ -313,10 +315,6 @@
</span>      ;; run-program.lisp
           "SGTTYB"
 
-          ;; Simple streams
-          "PROT_READ"
-          "UNIX-MUNMAP"
-
           ;; Other symbols from structures, etc.
           "C-CC"
           "C-CFLAG"
<span style="color: #aaaaaa">@@ -672,10 +670,6 @@
</span>      ;; run-program.lisp
           "SGTTYB"
 
-          ;; Simple streams
-          "PROT_READ"
-          "UNIX-MUNMAP"
-
           ;; Other symbols
           "BLKCNT-T"
           "C-CC"
</code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/commit/8a9a7ae2a692430b069b307a0993113f9f287229#diff-1'>
<strong>
src/code/unix-glibc2.lisp
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/code/unix-glibc2.lisp
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/code/unix-glibc2.lisp
</span><span style="color: #aaaaaa">@@ -1036,6 +1036,11 @@
</span>   (values nil (unix-errno))
        (values result 0))))
 
<span style="color: #000000;background-color: #ddffdd">+(defun unix-munmap (addr length)
+  (declare (type system-area-pointer addr)
+          (type (unsigned-byte 32) length))
+  (syscall ("munmap" system-area-pointer size-t) t addr length))
+
</span> (defun unix-msync (addr length flags)
   (declare (type system-area-pointer addr)
           (type (unsigned-byte 32) length)
</code></pre>

<br>
</li>

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

<br>
<a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/8a9a7ae2a692430b069b307a0993113f9f287229">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/8a9a7ae2a692430b069b307a0993113f9f287229"}}</script>
</p>
</div>
</body>
</html>