change log for rtems (2011-01-04)
rtems-vc at rtems.org
rtems-vc at rtems.org
Tue Jan 4 19:10:39 UTC 2011
*joel*:
2011-01-04 Joel Sherrill <joel.sherrill at oarcorp.com>
* libfs/src/nfsclient/src/nfs.c: readlink filesystem entry should
return ssize_t.
M 1.2670 cpukit/ChangeLog
M 1.27 cpukit/libfs/src/nfsclient/src/nfs.c
diff -u rtems/cpukit/ChangeLog:1.2669 rtems/cpukit/ChangeLog:1.2670
--- rtems/cpukit/ChangeLog:1.2669 Tue Dec 28 03:55:57 2010
+++ rtems/cpukit/ChangeLog Tue Jan 4 12:32:59 2011
@@ -1,3 +1,8 @@
+2011-01-04 Joel Sherrill <joel.sherrill at oarcorp.com>
+
+ * libfs/src/nfsclient/src/nfs.c: readlink filesystem entry should
+ return ssize_t.
+
2010-12-28 Sebastian Huber <sebastian.huber at embedded-brains.de>
* libfs/src/dosfs/msdos_misc.c: Create short file names acceptable for
diff -u rtems/cpukit/libfs/src/nfsclient/src/nfs.c:1.26 rtems/cpukit/libfs/src/nfsclient/src/nfs.c:1.27
--- rtems/cpukit/libfs/src/nfsclient/src/nfs.c:1.26 Wed Aug 25 04:37:48 2010
+++ rtems/cpukit/libfs/src/nfsclient/src/nfs.c Tue Jan 4 12:32:59 2011
@@ -561,10 +561,10 @@
Forward Declarations
*****************************************/
-static int nfs_readlink(
+static ssize_t nfs_readlink(
rtems_filesystem_location_info_t *loc, /* IN */
- char *buf, /* OUT */
- size_t len
+ char *buf, /* OUT */
+ size_t len
);
static int updateAttr(NfsNode node, int force);
@@ -2246,10 +2246,10 @@
return 0;
}
-static int nfs_readlink(
+static ssize_t nfs_readlink(
rtems_filesystem_location_info_t *loc, /* IN */
- char *buf, /* OUT */
- size_t len
+ char *buf, /* OUT */
+ size_t len
)
{
strbuf sbuf;
*joel*:
2011-01-04 Joel Sherrill <joel.sherrill at oarcorp.com>
* posix/src/aio_cancel.c: Use perfd field not next_fd.
M 1.2671 cpukit/ChangeLog
M 1.5 cpukit/posix/src/aio_cancel.c
diff -u rtems/cpukit/ChangeLog:1.2670 rtems/cpukit/ChangeLog:1.2671
--- rtems/cpukit/ChangeLog:1.2670 Tue Jan 4 12:32:59 2011
+++ rtems/cpukit/ChangeLog Tue Jan 4 12:38:58 2011
@@ -1,5 +1,9 @@
2011-01-04 Joel Sherrill <joel.sherrill at oarcorp.com>
+ * posix/src/aio_cancel.c: Use perfd field not next_fd.
+
+2011-01-04 Joel Sherrill <joel.sherrill at oarcorp.com>
+
* libfs/src/nfsclient/src/nfs.c: readlink filesystem entry should
return ssize_t.
diff -u rtems/cpukit/posix/src/aio_cancel.c:1.4 rtems/cpukit/posix/src/aio_cancel.c:1.5
--- rtems/cpukit/posix/src/aio_cancel.c:1.4 Tue Aug 24 07:04:43 2010
+++ rtems/cpukit/posix/src/aio_cancel.c Tue Jan 4 12:38:58 2011
@@ -108,14 +108,14 @@
rtems_set_errno_and_return_minus_one (EINVAL);
}
- result = rtems_aio_remove_req (&r_chain->next_fd, aiocbp);
+ result = rtems_aio_remove_req (&r_chain->perfd, aiocbp);
pthread_mutex_unlock (&aio_request_queue.mutex);
return result;
}
pthread_mutex_lock (&r_chain->mutex);
- result = rtems_aio_remove_req (&r_chain->next_fd, aiocbp);
+ result = rtems_aio_remove_req (&r_chain->perfd, aiocbp);
pthread_mutex_unlock (&r_chain->mutex);
pthread_mutex_unlock (&aio_request_queue.mutex);
return result;
--
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/20110104/3a00e26d/attachment-0001.html>
More information about the vc
mailing list