<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-mmap-anon-control-and-binding-stacks 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/67befdb52a4fabfe4d844e78f852528db94b62b0">67befdb5</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-10-03T13:55:50Z</i>
</div>
<pre class='commit-message'>Fix typo: index -> k.</pre>
</li>
<li>
<strong><a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/1aa6477b678c07fb38929759edb223666dcdf862">1aa6477b</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-10-03T13:56:20Z</i>
</div>
<pre class='commit-message'>The start of the control stack is control_stack, not
control_stack_start.</pre>
</li>
<li>
<strong><a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/65b5ed7715ded275fd4d360eab85df7c5357769d">65b5ed77</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-10-03T13:56:47Z</i>
</div>
<pre class='commit-message'>The start of the control stack is control_stack, not
control_stack_start.</pre>
</li>
</ul>
<h4>4 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
src/lisp/globals.c
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
src/lisp/globals.h
</a>
</li>
<li class='file-stats'>
<a href='#diff-2'>
src/lisp/os-common.c
</a>
</li>
<li class='file-stats'>
<a href='#diff-3'>
src/lisp/solaris-os.c
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/compare/4b838e3f56bbfb80f9d7eee847644cffdf69a7e4...65b5ed7715ded275fd4d360eab85df7c5357769d#diff-0'>
<strong>
src/lisp/globals.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/lisp/globals.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/lisp/globals.c
</span><span style="color: #aaaaaa">@@ -28,8 +28,6 @@ lispobj *dynamic_1_space;
</span> unsigned dynamic_space_size;
 lispobj *control_stack;
 
<span style="color: #000000;background-color: #ffdddd">-
-lispobj *control_stack_start;
</span> #if (defined(i386) || defined(__x86_64))
 lispobj *control_stack_end;
 #endif
</code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/compare/4b838e3f56bbfb80f9d7eee847644cffdf69a7e4...65b5ed7715ded275fd4d360eab85df7c5357769d#diff-1'>
<strong>
src/lisp/globals.h
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/lisp/globals.h
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/lisp/globals.h
</span><span style="color: #aaaaaa">@@ -37,8 +37,6 @@ extern unsigned long binding_stack_size;
</span> extern unsigned long static_space_size;
 extern unsigned long control_stack_size;
 
<span style="color: #000000;background-color: #ffdddd">-extern lispobj *control_stack_start;
-
</span> #if (defined(i386) || defined(__x86_64))
 extern lispobj *control_stack_end;
 #endif
</code></pre>

<br>
</li>
<li id='diff-2'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/compare/4b838e3f56bbfb80f9d7eee847644cffdf69a7e4...65b5ed7715ded275fd4d360eab85df7c5357769d#diff-2'>
<strong>
src/lisp/os-common.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/lisp/os-common.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/lisp/os-common.c
</span><span style="color: #aaaaaa">@@ -424,7 +424,7 @@ guard_zones(char **yellow_start, char **red_start)
</span>      * control stack area.
      */
 
<span style="color: #000000;background-color: #ffdddd">-    char *end = (char *) control_stack_start + control_stack_size;
</span><span style="color: #000000;background-color: #ddffdd">+    char *end = (char *) control_stack + control_stack_size;
</span> 
     *red_start = end - RED_ZONE_SIZE;
     *yellow_start = *red_start - YELLOW_ZONE_SIZE;
</code></pre>

<br>
</li>
<li id='diff-3'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/compare/4b838e3f56bbfb80f9d7eee847644cffdf69a7e4...65b5ed7715ded275fd4d360eab85df7c5357769d#diff-3'>
<strong>
src/lisp/solaris-os.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/lisp/solaris-os.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/lisp/solaris-os.c
</span><span style="color: #aaaaaa">@@ -436,7 +436,7 @@ static unsigned long *space_size[] = {
</span> #define HOLE_SIZE 0x2000
 
 void
<span style="color: #000000;background-color: #ffdddd">-make_hole(int index)
</span><span style="color: #000000;background-color: #ddffdd">+make_hole(int k)
</span> {
     os_vm_address_t hole;
 
</code></pre>

<br>
</li>

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

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