Browse Source

Add missing EXPORT.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2885 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.90
sletz 16 years ago
parent
commit
cdadd34637
4 changed files with 4 additions and 5 deletions
  1. +1
    -2
      posix/JackPosixThread.cpp
  2. +1
    -1
      posix/JackPosixThread.h
  3. +1
    -1
      windows/JackWinThread.cpp
  4. +1
    -1
      windows/JackWinThread.h

+ 1
- 2
posix/JackPosixThread.cpp View File

@@ -261,13 +261,12 @@ void JackPosixThread::Terminate()
pthread_exit(0); pthread_exit(0);
} }


void ThreadExit()
EXPORT void ThreadExit()
{ {
jack_log("ThreadExit"); jack_log("ThreadExit");
pthread_exit(0); pthread_exit(0);
} }



} // end of namespace } // end of namespace


EXPORT bool jack_tls_allocate_key(jack_tls_key *key_ptr) EXPORT bool jack_tls_allocate_key(jack_tls_key *key_ptr)


+ 1
- 1
posix/JackPosixThread.h View File

@@ -71,7 +71,7 @@ class EXPORT JackPosixThread : public detail::JackThreadInterface
static int KillImp(pthread_t thread); static int KillImp(pthread_t thread);
}; };


void ThreadExit();
EXPORT void ThreadExit();


} // end of namespace } // end of namespace




+ 1
- 1
windows/JackWinThread.cpp View File

@@ -228,7 +228,7 @@ void JackWinThread::Terminate()
ExitThread(0); ExitThread(0);
} }


void ThreadExit()
EXPORT void ThreadExit()
{ {
jack_log("ThreadExit"); jack_log("ThreadExit");
ExitThread(0); ExitThread(0);


+ 1
- 1
windows/JackWinThread.h View File

@@ -71,7 +71,7 @@ class EXPORT JackWinThread : public detail::JackThreadInterface


}; };


void ThreadExit();
EXPORT void ThreadExit();


} // end of namespace } // end of namespace




Loading…
Cancel
Save