/[svn]/linuxsampler/trunk/src/common/Thread.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/common/Thread.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3019 by persson, Sun Jun 19 09:09:38 2011 UTC revision 3020 by persson, Sun Oct 23 07:24:09 2016 UTC
# Line 374  void Thread::TestCancel() { Line 374  void Thread::TestCancel() {
374  }  }
375    
376  #if defined(WIN32)  #if defined(WIN32)
377    #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)
378    // make sure stack is 16-byte aligned for SSE instructions
379    __attribute__((force_align_arg_pointer))
380    #endif
381  DWORD WINAPI __win32thread_launcher(LPVOID lpParameter) {  DWORD WINAPI __win32thread_launcher(LPVOID lpParameter) {
382      Thread* t;      Thread* t;
383      t = (Thread*) lpParameter;      t = (Thread*) lpParameter;

Legend:
Removed from v.3019  
changed lines
  Added in v.3020

  ViewVC Help
Powered by ViewVC