This website requires JavaScript.
Explore
Help
Register
Sign In
mirrors
/
dolphin
Watch
1
Star
0
Fork
0
You've already forked dolphin
mirror of
https://github.com/dolphin-emu/dolphin.git
synced
2025-02-04 16:46:09 +02:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
1c7ca86940
dolphin
/
Source
/
Core
/
Common
/
Src
History
Jordan Woyak
2c05c49a04
Replaced Common::Thread with a partial implementation of std::thread. (rvalue references are used if available, <thread> is used if possible) Eliminates the need to use dynamic memory allocation for threads, so it's impossible to forget to delete a thread or set a pointer to NULL. Enables use of type-safe thread functions, no need to cast to and from void*. I've made sure the code compiles in vs08 and tested the functionality of "StdThread.h" on Linux so I'm hoping everything will work :p. In the future "StdThread.h" can be removed (maybe when OS X ships with gcc 4.4 and vs2015 is released :p).
...
git-svn-id:
https://dolphin-emu.googlecode.com/svn/trunk@6933
8ced0084-cf51-0410-be5f-012b33b47a6e
2011-01-27 20:47:58 +00:00
..
Crypto
ABI.cpp
ABI.h
Atomic_GCC.h
Atomic_Win32.h
Atomic.h
BreakPoints.cpp
BreakPoints.h
CDUtils.cpp
CDUtils.h
ChunkFile.h
ColorUtil.cpp
ColorUtil.h
Common.h
Translate PanicAlert captions too.
2011-01-13 20:53:37 +00:00
CommonFuncs.h
Fix the panic alert hack for windows and osx. The macro needed to be defined after HAVE_WX is defined. That explains why windows accepted the string concatenation that I thought it wouldn't.
2011-01-12 18:09:16 +00:00
CommonPaths.h
CommonTypes.h
ConsoleListener.cpp
ConsoleListener.h
CPUDetect.cpp
Detect cpu features AVX and AES, both are present on Sandy Bridge. For future use :P
2011-01-26 21:27:26 +00:00
CPUDetect.h
Detect cpu features AVX and AES, both are present on Sandy Bridge. For future use :P
2011-01-26 21:27:26 +00:00
DebugInterface.h
DynamicLibrary.cpp
DynamicLibrary.h
ExtendedTrace.cpp
ExtendedTrace.h
FifoQueue.h
FileSearch.cpp
Add a hack to match the *.* wildcard in a file search on non windows platforms. This fixes Metroid Other M on linux, and probably other games. Fixes issue 3966.
2011-01-22 18:19:42 +00:00
FileSearch.h
FileUtil.cpp
Clean up nowx and stop cocoaApp busy-waiting in the main loop.
2011-01-15 10:33:07 +00:00
FileUtil.h
FixedSizeQueue.h
Hash.cpp
Hash.h
IniFile.cpp
Remove the __APPLE__ workaround for reading config files from a ctor.
2011-01-18 00:04:29 +00:00
IniFile.h
LinearDiskCache.h
second try, a compilable :) fix for issue 3976 and some optimizations to color loading that will not mess with colors.
2011-01-25 22:30:15 +00:00
Log.h
LogManager.cpp
LogManager.h
MathUtil.cpp
MathUtil.h
MemArena.cpp
MemArena.h
MemoryUtil.cpp
Executable memory above 2GB is okay on a 32-bit machine.
2011-01-12 21:25:33 +00:00
MemoryUtil.h
Misc.cpp
Various minor fixes to allow building with clang on OS X.
2011-01-27 05:01:00 +00:00
MsgHandler.cpp
Clean up translator callback.
2011-01-14 00:15:08 +00:00
MsgHandler.h
Clean up translator callback.
2011-01-14 00:15:08 +00:00
NandPaths.cpp
NandPaths.h
OpenCL.cpp
OpenCL.h
Plugin.cpp
Plugin.h
PluginDSP.cpp
PluginDSP.h
PluginVideo.cpp
PluginVideo.h
SConscript
Various minor fixes to allow building with clang on OS X.
2011-01-27 05:01:00 +00:00
SDCardUtil.cpp
SDCardUtil.h
Setup.h
stdafx.cpp
stdafx.h
StdThread.h
Replaced Common::Thread with a partial implementation of std::thread. (rvalue references are used if available, <thread> is used if possible) Eliminates the need to use dynamic memory allocation for threads, so it's impossible to forget to delete a thread or set a pointer to NULL. Enables use of type-safe thread functions, no need to cast to and from void*. I've made sure the code compiles in vs08 and tested the functionality of "StdThread.h" on Linux so I'm hoping everything will work :p. In the future "StdThread.h" can be removed (maybe when OS X ships with gcc 4.4 and vs2015 is released :p).
2011-01-27 20:47:58 +00:00
StringUtil.cpp
StringUtil.h
Use std::locale() on OS X and std::locale("") elsewhere.
2011-01-22 03:57:03 +00:00
svnrev_template.h
SymbolDB.cpp
SymbolDB.h
SysConf.cpp
Removed my previous PanicAlert translation hack. Fixed with a better method suggested by BhaaL. The translation is done by a callback in the MsgHandler routine that is set at program start. Added macros PanicAlertT, SuccessAlertT, PanicYesNoT, and AskYesNoT that are identical to the non T versions except those strings will be added by gettext to the po files to be translated. These can and should be used anywhere in the code for strings that should be translated.
2011-01-13 02:05:58 +00:00
SysConf.h
Removed my previous PanicAlert translation hack. Fixed with a better method suggested by BhaaL. The translation is done by a callback in the MsgHandler routine that is set at program start. Added macros PanicAlertT, SuccessAlertT, PanicYesNoT, and AskYesNoT that are identical to the non T versions except those strings will be added by gettext to the po files to be translated. These can and should be used anywhere in the code for strings that should be translated.
2011-01-13 02:05:58 +00:00
Thread.cpp
Replaced Common::Thread with a partial implementation of std::thread. (rvalue references are used if available, <thread> is used if possible) Eliminates the need to use dynamic memory allocation for threads, so it's impossible to forget to delete a thread or set a pointer to NULL. Enables use of type-safe thread functions, no need to cast to and from void*. I've made sure the code compiles in vs08 and tested the functionality of "StdThread.h" on Linux so I'm hoping everything will work :p. In the future "StdThread.h" can be removed (maybe when OS X ships with gcc 4.4 and vs2015 is released :p).
2011-01-27 20:47:58 +00:00
Thread.h
Replaced Common::Thread with a partial implementation of std::thread. (rvalue references are used if available, <thread> is used if possible) Eliminates the need to use dynamic memory allocation for threads, so it's impossible to forget to delete a thread or set a pointer to NULL. Enables use of type-safe thread functions, no need to cast to and from void*. I've made sure the code compiles in vs08 and tested the functionality of "StdThread.h" on Linux so I'm hoping everything will work :p. In the future "StdThread.h" can be removed (maybe when OS X ships with gcc 4.4 and vs2015 is released :p).
2011-01-27 20:47:58 +00:00
Thunk.cpp
Thunk.h
Timer.cpp
Timer.h
Version.cpp
Don't bother quickly flashing the full pathname to the file loaded
2011-01-11 16:19:15 +00:00
x64Analyzer.cpp
x64Analyzer.h
x64Emitter.cpp
x64Emitter.h
Core/DSPCore: Consolidation of register accesses(except for the four hw
2011-01-14 18:00:25 +00:00