<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2010-05-01)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-05-01 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libcsupport/Makefile.am: Add libcsupport/src/flockfile.c,
        libcsupport/src/ftrylockfile.c, libcsupport/src/funlockfile.c.
        * libcsupport/src/flockfile.c, libcsupport/src/ftrylockfile.c,
        libcsupport/src/funlockfile.c: New (stub functions).
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2287&r2=text&tr2=1.2288&diff_format=h">M</a></td><td width='1%'>1.2288</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/Makefile.am.diff?r1=text&tr1=1.116&r2=text&tr2=1.117&diff_format=h">M</a></td><td width='1%'>1.117</td><td width='100%'>cpukit/libcsupport/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/flockfile.c?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">cpukit/libcsupport/src/flockfile.c</font></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/ftrylockfile.c?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">cpukit/libcsupport/src/ftrylockfile.c</font></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/funlockfile.c?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">cpukit/libcsupport/src/funlockfile.c</font></td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2287 rtems/cpukit/ChangeLog:1.2288
--- rtems/cpukit/ChangeLog:1.2287       Fri Apr 30 03:55:38 2010
+++ rtems/cpukit/ChangeLog      Fri Apr 30 23:18:59 2010
</font><font color='#997700'>@@ -1,3 +1,10 @@
</font><font color='#000088'>+2010-05-01    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * libcsupport/Makefile.am: Add libcsupport/src/flockfile.c,
+       libcsupport/src/ftrylockfile.c, libcsupport/src/funlockfile.c.
+       * libcsupport/src/flockfile.c, libcsupport/src/ftrylockfile.c,
+       libcsupport/src/funlockfile.c: New (stub functions).
+
</font> 2010-04-30        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
        * libcsupport/include/rtems/libio_.h, libcsupport/src/envlock.c,

<font color='#006600'>diff -u rtems/cpukit/libcsupport/Makefile.am:1.116 rtems/cpukit/libcsupport/Makefile.am:1.117
--- rtems/cpukit/libcsupport/Makefile.am:1.116  Tue Dec  1 08:22:58 2009
+++ rtems/cpukit/libcsupport/Makefile.am        Fri Apr 30 23:19:00 2010
</font><font color='#997700'>@@ -118,6 +118,8 @@
</font>     $(DIRECTORY_SCAN_C_FILES) $(ID_C_FILES) src/envlock.c \
     $(TERMIOS_C_FILES) src/getpagesize.c src/getrusage.c
 
<font color='#000088'>+libcsupport_a_SOURCES += src/flockfile.c src/funlockfile.c src/ftrylockfile.c
+
</font> EXTRA_DIST = src/TODO src/CASES src/README
 
 include $(srcdir)/preinstall.am

<font color='#006600'>diff -u /dev/null rtems/cpukit/libcsupport/src/flockfile.c:1.1
--- /dev/null   Sat May  1 00:14:13 2010
+++ rtems/cpukit/libcsupport/src/flockfile.c    Fri Apr 30 23:19:00 2010
</font><font color='#997700'>@@ -0,0 +1,22 @@
</font><font color='#000088'>+/*
+ * Copyright (c) 2009 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#if defined(RTEMS_NEWLIB) && !defined(HAVE_FLOCKFILE) && defined(HAVE_DECL_FLOCKFILE)
+
+#include <stdio.h>
+
+/* This is a non-functional stub */
+void flockfile(FILE* file)
+{
+}
+
+#endif
</font>
<font color='#006600'>diff -u /dev/null rtems/cpukit/libcsupport/src/ftrylockfile.c:1.1
--- /dev/null   Sat May  1 00:14:13 2010
+++ rtems/cpukit/libcsupport/src/ftrylockfile.c Fri Apr 30 23:19:00 2010
</font><font color='#997700'>@@ -0,0 +1,23 @@
</font><font color='#000088'>+/*
+ * Copyright (c) 2009 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#if defined(RTEMS_NEWLIB) && !defined(HAVE_FTRYLOCKFILE) && defined(HAVE_DECL_FTRYLOCKFILE)
+
+#include <stdio.h>
+
+/* This is a non-functional stub */
+int ftrylockfile(FILE* file)
+{
+  return -1;
+}
+
+#endif
</font>
<font color='#006600'>diff -u /dev/null rtems/cpukit/libcsupport/src/funlockfile.c:1.1
--- /dev/null   Sat May  1 00:14:13 2010
+++ rtems/cpukit/libcsupport/src/funlockfile.c  Fri Apr 30 23:19:00 2010
</font><font color='#997700'>@@ -0,0 +1,22 @@
</font><font color='#000088'>+/*
+ * Copyright (c) 2009 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#if defined(RTEMS_NEWLIB) && !defined(HAVE_FUNLOCKFILE) && defined(HAVE_DECL_FUNLOCKFILE)
+
+#include <stdio.h>
+
+/* This is a non-functional stub */
+void funlockfile(FILE* file)
+{
+}
+
+#endif
</font></pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-05-01 Ralf Corsépius <ralf.corsepius@rtems.org>

        * Makefile.am: Move POSIX in front of other tests.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/ChangeLog.diff?r1=text&tr1=1.173&r2=text&tr2=1.174&diff_format=h">M</a></td><td width='1%'>1.174</td><td width='100%'>testsuites/libtests/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/libtests/Makefile.am.diff?r1=text&tr1=1.25&r2=text&tr2=1.26&diff_format=h">M</a></td><td width='1%'>1.26</td><td width='100%'>testsuites/libtests/Makefile.am</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/libtests/ChangeLog:1.173 rtems/testsuites/libtests/ChangeLog:1.174
--- rtems/testsuites/libtests/ChangeLog:1.173   Sun Apr 25 14:12:22 2010
+++ rtems/testsuites/libtests/ChangeLog Fri Apr 30 23:20:26 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-05-01    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * Makefile.am: Move POSIX in front of other tests.
+
</font> 2010-04-25        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        * bspcmdline01/init.c: Fix assert conditional.

<font color='#006600'>diff -u rtems/testsuites/libtests/Makefile.am:1.25 rtems/testsuites/libtests/Makefile.am:1.26
--- rtems/testsuites/libtests/Makefile.am:1.25  Tue Jan 26 09:09:02 2010
+++ rtems/testsuites/libtests/Makefile.am       Fri Apr 30 23:20:27 2010
</font><font color='#997700'>@@ -4,11 +4,12 @@
</font> 
 ACLOCAL_AMFLAGS = -I ../aclocal
 
<font color='#880000'>-SUBDIRS = bspcmdline01 cpuuse malloctest heapwalk putenvtest monitor \
</font><font color='#000088'>+SUBDIRS = POSIX
+
+SUBDIRS += bspcmdline01 cpuuse malloctest heapwalk putenvtest monitor \
</font>     monitor02 rtmonuse stackchk stackchk01 termios termios01 termios02 \
     rtems++ tztest block01 block02 block03 block04 block05 block06 block07 \
     block08 block09 block10 stringto01
<font color='#880000'>-SUBDIRS += POSIX
</font> 
 include $(top_srcdir)/../automake/subdirs.am
 include $(top_srcdir)/../automake/local.am
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>