Back out 522f95abe87d71c7025f2f358a8f350134e284b2: What was I thinking?

This commit is contained in:
Gregory Nutt
2015-12-02 10:47:32 -06:00
parent 7d3d49e227
commit 7be7579f59
2 changed files with 17 additions and 27 deletions
+3 -3
View File
@@ -60,12 +60,12 @@
struct inode;
struct nsem_inode_s
{
/* Inode payload unique to named semaphores. ns_sem must appear first in
* this structure in order to support casting between type sem_t and
/* Inode payload unique to named semaphores. ns_inode must appear first
* in this structure in order to support casting between type sem_t and
* types of struct nsem_inode_s. */
sem_t ns_sem; /* The semaphore */
FAR struct inode *ns_inode; /* Containing inode */
sem_t ns_sem; /* The semaphore */
};
#endif