1234567891011121314151617181920212223242526272829303132333435 |
- #include <time.h>
- #include "FTTSemaphore.h"
- #include "str_conv.h"
- #include "memctrl.h"
- //-------------------------------------------------------------------------------------------------
- //0026D3C4 //^_^
- FTTSemaphore::FTTSemaphore(int a1, int a2, const char *pSemName, EFTTProtocol eProtocol) {
- }
- //-------------------------------------------------------------------------------------------------
- //0026D402 //^_-
- FTTSemaphore::~FTTSemaphore() {
- }
- //-------------------------------------------------------------------------------------------------
- //0026D4B4 //^_^
- int FTTSemaphore::GetSemaCount() {
- int dret = 0;
- return dret;
- }
- //-------------------------------------------------------------------------------------------------
- //0026D48A //^_^
- void FTTSemaphore::SignalSema(int a2) {
- LOGE("SignalSema%p%x",this,a2);
- }
- //-------------------------------------------------------------------------------------------------
- //0026D420 //^_- 逻辑完全一至,但是寄存器略有区别
- int FTTSemaphore::WaitSema(int a1) {
- LOGI("FTTSemaphore::WaitSema entry");
- LOGE("WaitSema%p%x",this,a1);
- return 0x100;
- }
- //-------------------------------------------------------------------------------------------------
|