Skip to content

Commit 65834f3

Browse files
author
mars
committed
added new GET_PARAMETERS service call
1 parent 4b09ea1 commit 65834f3

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

Source/ServiceCall.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#define OWL_SERVICE_VERSION_V1 0x001
2-
#define OWL_SERVICE_ARM_RFFT_FAST_INIT_F32 0x100
3-
#define OWL_SERVICE_ARM_CFFT_INIT_F32 0x110
1+
#define OWL_SERVICE_VERSION_V1 0x0001
2+
#define OWL_SERVICE_ARM_RFFT_FAST_INIT_F32 0x0100
3+
#define OWL_SERVICE_ARM_CFFT_INIT_F32 0x0110
4+
#define OWL_SERVICE_GET_PARAMETERS 0x1000
45
#define OWL_SERVICE_OK 0x000
56
#define OWL_SERVICE_INVALID_ARGS -1
67

Source/operators.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ void * operator new (size_t, void * p) { return p ; }
99
void * operator new[](size_t size) { return malloc(size); }
1010
void operator delete(void* ptr) { free(ptr); }
1111
void operator delete[](void * ptr) { free(ptr); }
12+
//int _gettimeofday(struct timeval *__p, void *__tz){return 0;}

0 commit comments

Comments
 (0)