Working toward compiler independence: Removed inline funcs

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@15 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2007-02-20 23:16:24 +00:00
parent 3c0e634aee
commit 4881fed8bf
19 changed files with 31 additions and 108 deletions
+1 -4
View File
@@ -71,10 +71,7 @@ static void _lib_semtake(struct streamlist *list)
}
}
static inline void _lib_semgive(struct streamlist *list)
{
sem_post(&list->sl_sem);
}
#define _lib_semgive(list) sem_post(&list->sl_sem)
/************************************************************
* Public Functions