change log for rtems (2010-05-01)

rtems-vc at rtems.org rtems-vc at rtems.org
Sat May 1 05:14:14 UTC 2010


 *ralf*:
2010-05-01	Ralf Corsépius <ralf.corsepius at 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).

M 1.2288  cpukit/ChangeLog
M  1.117  cpukit/libcsupport/Makefile.am
A    1.1  cpukit/libcsupport/src/flockfile.c
A    1.1  cpukit/libcsupport/src/ftrylockfile.c
A    1.1  cpukit/libcsupport/src/funlockfile.c

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
@@ -1,3 +1,10 @@
+2010-05-01	Ralf Corsépius <ralf.corsepius at 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).
+
 2010-04-30	Sebastian Huber <sebastian.huber at embedded-brains.de>
 
 	* libcsupport/include/rtems/libio_.h, libcsupport/src/envlock.c,

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
@@ -118,6 +118,8 @@
     $(DIRECTORY_SCAN_C_FILES) $(ID_C_FILES) src/envlock.c \
     $(TERMIOS_C_FILES) src/getpagesize.c src/getrusage.c
 
+libcsupport_a_SOURCES += src/flockfile.c src/funlockfile.c src/ftrylockfile.c
+
 EXTRA_DIST = src/TODO src/CASES src/README
 
 include $(srcdir)/preinstall.am

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
@@ -0,0 +1,22 @@
+/*
+ * 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

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
@@ -0,0 +1,23 @@
+/*
+ * 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

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
@@ -0,0 +1,22 @@
+/*
+ * 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


 *ralf*:
2010-05-01	Ralf Corsépius <ralf.corsepius at rtems.org>

	* Makefile.am: Move POSIX in front of other tests.

M  1.174  testsuites/libtests/ChangeLog
M   1.26  testsuites/libtests/Makefile.am

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
@@ -1,3 +1,7 @@
+2010-05-01	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* Makefile.am: Move POSIX in front of other tests.
+
 2010-04-25	Joel Sherrill <joel.sherrilL at OARcorp.com>
 
 	* bspcmdline01/init.c: Fix assert conditional.

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
@@ -4,11 +4,12 @@
 
 ACLOCAL_AMFLAGS = -I ../aclocal
 
-SUBDIRS = bspcmdline01 cpuuse malloctest heapwalk putenvtest monitor \
+SUBDIRS = POSIX
+
+SUBDIRS += bspcmdline01 cpuuse malloctest heapwalk putenvtest monitor \
     monitor02 rtmonuse stackchk stackchk01 termios termios01 termios02 \
     rtems++ tztest block01 block02 block03 block04 block05 block06 block07 \
     block08 block09 block10 stringto01
-SUBDIRS += POSIX
 
 include $(top_srcdir)/../automake/subdirs.am
 include $(top_srcdir)/../automake/local.am



--

Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20100501/dca1387f/attachment.html>


More information about the vc mailing list