Kaynağa Gözat

Add makefile and include osal and types

Jeremy Soller 6 yıl önce
ebeveyn
işleme
6720dfdc95
3 değiştirilmiş dosya ile 39 ekleme ve 0 silme
  1. 10 0
      Makefile
  2. 21 0
      pte_osal.h
  3. 8 0
      pte_types.h

+ 10 - 0
Makefile

@@ -0,0 +1,10 @@
+SRC=$(wildcard *.c)
+OBJ=$(patsubst %.c,%.o,$(SRC))
+
+all: libpthread.a
+
+libpthread.a: $(OBJ)
+	$(AR) -rcs $@ $(OBJ)
+
+%.o: %.c
+	$(CC) $(CFLAGS) -I . -c $< -o $@

+ 21 - 0
pte_osal.h

@@ -0,0 +1,21 @@
+#ifndef _OS_SUPPORT_H_
+#define _OS_SUPPORT_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif // __cplusplus
+
+#include <sys/types.h>
+
+// XXX
+typedef unsigned long pte_osThreadHandle;
+typedef unsigned long pte_osSemaphoreHandle;
+typedef int32_t* pte_osMutexHandle;
+
+#include <pte_generic_osal.h>
+
+#ifdef __cplusplus
+}
+#endif // __cplusplus
+
+#endif // _OS_SUPPORT_H

+ 8 - 0
pte_types.h

@@ -0,0 +1,8 @@
+#ifndef PTE_TYPES_H
+#define PTE_TYPES_H
+
+#include <errno.h>
+#include <sys/types.h>
+#include <sys/timeb.h>
+
+#endif /* PTE_TYPES_H */