mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 04:52:59 +01:00
sem: rename to sema
To prevent name colisions with POSIX semaphores
This commit is contained in:
parent
ca7dcef341
commit
ee4f79482a
@ -283,11 +283,11 @@ ifneq (,$(filter posix,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter posix_semaphore,$(USEMODULE)))
|
ifneq (,$(filter posix_semaphore,$(USEMODULE)))
|
||||||
USEMODULE += sem
|
USEMODULE += sema
|
||||||
USEMODULE += vtimer
|
USEMODULE += vtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter sem,$(USEMODULE)))
|
ifneq (,$(filter sema,$(USEMODULE)))
|
||||||
USEMODULE += vtimer
|
USEMODULE += vtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -71,8 +71,8 @@ endif
|
|||||||
ifneq (,$(filter netopt,$(USEMODULE)))
|
ifneq (,$(filter netopt,$(USEMODULE)))
|
||||||
DIRS += net/crosslayer/netopt
|
DIRS += net/crosslayer/netopt
|
||||||
endif
|
endif
|
||||||
ifneq (,$(filter sem,$(USEMODULE)))
|
ifneq (,$(filter sema,$(USEMODULE)))
|
||||||
DIRS += sem
|
DIRS += sema
|
||||||
endif
|
endif
|
||||||
|
|
||||||
DIRS += $(dir $(wildcard $(addsuffix /Makefile, ${USEMODULE})))
|
DIRS += $(dir $(wildcard $(addsuffix /Makefile, ${USEMODULE})))
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
#include "sem.h"
|
#include "sema.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
#include "irq.h"
|
#include "irq.h"
|
||||||
#include "sched.h"
|
#include "sched.h"
|
||||||
#include "sem.h"
|
#include "sema.h"
|
||||||
#include "tcb.h"
|
#include "tcb.h"
|
||||||
#include "timex.h"
|
#include "timex.h"
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include "msg.h"
|
#include "msg.h"
|
||||||
#include "vtimer.h"
|
#include "vtimer.h"
|
||||||
|
|
||||||
#include "sem.h"
|
#include "sema.h"
|
||||||
|
|
||||||
#define ENABLE_DEBUG (0)
|
#define ENABLE_DEBUG (0)
|
||||||
#include "debug.h"
|
#include "debug.h"
|
Loading…
Reference in New Issue
Block a user