experimental multi-core support on linux

- Input seems not to work for some reason (please check and tell me if it's not only me)
- Skip frames is not supported

Report to me of other problems


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@740 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2008-10-02 10:43:32 +00:00
parent a1837662a0
commit dc3fd905c9
4 changed files with 26 additions and 4 deletions

View File

@ -5,10 +5,12 @@
#ifndef _VIDEO_H_INCLUDED__
#define _VIDEO_H_INCLUDED__
#include "Thread.h"
#include "PluginSpecs.h"
#include "ExportProlog.h"
typedef void (*TSetPEToken)(const unsigned short _token, const int _bSetTokenAcknowledge);
typedef void (*TSetPEFinish)(void);
typedef unsigned char* (*TGetMemoryPointer)(const unsigned int _iAddress);
@ -40,6 +42,8 @@ typedef struct
volatile bool bPauseRead;
#ifdef _WIN32
CRITICAL_SECTION sync;
#else
Common::CriticalSection *sync;
#endif
} SCPFifoStruct;