<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-grand-unix-unification 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/3dd45a3a9e0d1cc1c6c2a7dffcb46f28f97231ba">3dd45a3a</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-10-31T10:26:48Z</i>
</div>
<pre class='commit-message'>Regenerated.</pre>
</li>
</ul>
<h4>1 changed file:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
src/i18n/locale/cmucl-unix.pot
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/commit/3dd45a3a9e0d1cc1c6c2a7dffcb46f28f97231ba#diff-0'>
<strong>
src/i18n/locale/cmucl-unix.pot
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/i18n/locale/cmucl-unix.pot
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/i18n/locale/cmucl-unix.pot
</span><span style="color: #aaaaaa">@@ -166,6 +166,17 @@ msgstr ""
</span> 
 #: src/code/unix.lisp
 msgid ""
<span style="color: #000000;background-color: #ddffdd">+"UNIX-LSEEK accepts a file descriptor and moves the file pointer ahead\n"
+"   a certain OFFSET for that file.  WHENCE can be any of the following:\n"
+"\n"
+"   l_set        Set the file pointer.\n"
+"   l_incr       Increment the file pointer.\n"
+"   l_xtnd       Extend the file size.\n"
+"  "
+msgstr ""
+
+#: src/code/unix.lisp
+msgid ""
</span> "Unix-mkdir creates a new directory with the specified name and mode.\n"
 "   (Same as those for unix-chmod.)  It returns T upon success, otherwise\n"
 "   NIL and an error number."
<span style="color: #aaaaaa">@@ -222,6 +233,10 @@ msgid "Synchronous writes (on ext2)"
</span> msgstr ""
 
 #: src/code/unix.lisp
<span style="color: #000000;background-color: #ddffdd">+msgid "Asynchronous I/O"
+msgstr ""
+
+#: src/code/unix.lisp
</span> msgid ""
 "Unix-open opens the file whose pathname is specified by path\n"
 "   for reading and/or writing as specified by the flags argument.\n"
<span style="color: #aaaaaa">@@ -264,6 +279,15 @@ msgid ""
</span> msgstr ""
 
 #: src/code/unix.lisp
<span style="color: #000000;background-color: #ddffdd">+msgid ""
+"Unix-dup2 duplicates an existing file descriptor just as unix-dup\n"
+"   does only the new value of the duplicate descriptor may be requested\n"
+"   through the second argument.  If a file already exists with the\n"
+"   requested descriptor number, it will be closed and the number\n"
+"   assigned to the duplicate."
+msgstr ""
+
+#: src/code/unix.lisp
</span> msgid "Duplicate a file descriptor"
 msgstr ""
 
<span style="color: #aaaaaa">@@ -371,6 +395,14 @@ msgstr ""
</span> 
 #: src/code/unix.lisp
 msgid ""
<span style="color: #000000;background-color: #ddffdd">+"UNIX-READ attempts to read from the file described by fd into\n"
+"   the buffer buf until it is full.  Len is the length of the buffer.\n"
+"   The number of bytes actually read is returned or NIL and an error\n"
+"   number if an error occured."
+msgstr ""
+
+#: src/code/unix.lisp
+msgid ""
</span> "Unix-readlink invokes the readlink system call on the file name\n"
 "  specified by the simple string path.  It returns up to two values:\n"
 "  the contents of the symbolic link if the call is successful, or\n"
<span style="color: #aaaaaa">@@ -398,6 +430,14 @@ msgstr ""
</span> 
 #: src/code/unix.lisp
 msgid ""
<span style="color: #000000;background-color: #ddffdd">+"Define an ioctl command. If the optional ARG and PARM-TYPE are given\n"
+"  then ioctl argument size and direction are included as for ioctls defined\n"
+"  by _IO, _IOR, _IOW, or _IOWR. If DEV is a character then the ioctl type\n"
+"  is the characters code, else DEV may be an integer giving the type."
+msgstr ""
+
+#: src/code/unix.lisp
+msgid ""
</span> "Unix-ioctl performs a variety of operations on open i/o\n"
 "   descriptors.  See the UNIX Programmer's Manual for more\n"
 "   information."
<span style="color: #aaaaaa">@@ -491,6 +531,38 @@ msgid ""
</span> msgstr ""
 
 #: src/code/unix.lisp
<span style="color: #000000;background-color: #ddffdd">+msgid "These bits determine file type."
+msgstr ""
+
+#: src/code/unix.lisp
+msgid "Directory"
+msgstr ""
+
+#: src/code/unix.lisp
+msgid "Character device"
+msgstr ""
+
+#: src/code/unix.lisp
+msgid "FIFO"
+msgstr ""
+
+#: src/code/unix.lisp
+msgid "Block device"
+msgstr ""
+
+#: src/code/unix.lisp
+msgid "Regular file"
+msgstr ""
+
+#: src/code/unix.lisp
+msgid "Symbolic link."
+msgstr ""
+
+#: src/code/unix.lisp
+msgid "Socket."
+msgstr ""
+
+#: src/code/unix.lisp
</span> msgid "Returns either :file, :directory, :link, :special, or NIL."
 msgstr ""
 
<span style="color: #aaaaaa">@@ -1226,6 +1298,14 @@ msgstr ""
</span> 
 #: src/code/unix.lisp
 msgid ""
<span style="color: #000000;background-color: #ddffdd">+"Unix-getitimer returns the INTERVAL and VALUE slots of one of\n"
+"   three system timers (:real :virtual or :profile). On success,\n"
+"   unix-getitimer returns 5 values,\n"
+"   T, it-interval-secs, it-interval-usec, it-value-secs, it-value-usec."
+msgstr ""
+
+#: src/code/unix.lisp
+msgid ""
</span> "Return a USER-INFO structure for the user identified by UID, or NIL if not "
 "found."
 msgstr ""
</code></pre>

<br>
</li>

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

<br>
<a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/3dd45a3a9e0d1cc1c6c2a7dffcb46f28f97231ba">View it on GitLab</a>
<br>
You're receiving this email because of your account on <a href="https://gitlab.common-lisp.net/">gitlab.common-lisp.net</a>.
If you'd like to receive fewer emails, you can adjust your notification settings.
<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/3dd45a3a9e0d1cc1c6c2a7dffcb46f28f97231ba"}}</script>
</p>
</div>
</body>
</html>