summaryrefslogtreecommitdiff
path: root/cppu/inc/uno/threadpool.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppu/inc/uno/threadpool.h')
-rw-r--r--cppu/inc/uno/threadpool.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/cppu/inc/uno/threadpool.h b/cppu/inc/uno/threadpool.h
index 3558ddb289e4..82431a4d376a 100644
--- a/cppu/inc/uno/threadpool.h
+++ b/cppu/inc/uno/threadpool.h
@@ -2,9 +2,9 @@
*
* $RCSfile: threadpool.h,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dbo $ $Date: 2001-03-09 12:10:56 $
+ * last change: $Author: dbo $ $Date: 2001-03-28 10:46:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,7 +81,7 @@ extern "C" {
* false, when the thread has already an identifier. The identifier was not
* altered. ( This is in general a bug ). <br>
**/
-SAL_DLLEXPORT sal_Bool SAL_CALL uno_bindIdToCurrentThread( sal_Sequence *pThreadId )
+sal_Bool SAL_CALL uno_bindIdToCurrentThread( sal_Sequence *pThreadId )
SAL_THROW_EXTERN_C();
@@ -94,7 +94,7 @@ SAL_DLLEXPORT sal_Bool SAL_CALL uno_bindIdToCurrentThread( sal_Sequence *pThread
*
* @param ppThreadId [out] Contains the (acquired) ThreadId.
**/
-SAL_DLLEXPORT void SAL_CALL uno_getIdOfCurrentThread( sal_Sequence **ppThreadId )
+void SAL_CALL uno_getIdOfCurrentThread( sal_Sequence **ppThreadId )
SAL_THROW_EXTERN_C();
@@ -102,7 +102,7 @@ SAL_DLLEXPORT void SAL_CALL uno_getIdOfCurrentThread( sal_Sequence **ppThreadId
* If the internal refcount drops to zero, the association betwen threadId and
* thread is broken.
**/
-SAL_DLLEXPORT void SAL_CALL uno_releaseIdFromCurrentThread()
+void SAL_CALL uno_releaseIdFromCurrentThread()
SAL_THROW_EXTERN_C();
@@ -120,7 +120,7 @@ struct uno_threadpool_Handle;
* local process. The pointer to the bridge object should be used.
* @see uno_threadpool_disposeThreads
***/
-SAL_DLLEXPORT struct uno_threadpool_Handle * SAL_CALL
+struct uno_threadpool_Handle * SAL_CALL
uno_threadpool_createHandle( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
/**
@@ -132,7 +132,7 @@ uno_threadpool_createHandle( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
* If the threads for this bridge were disposed,
* *ppThreadSpecificData is null.
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_enter( struct uno_threadpool_Handle * pHandle , void **ppThreadSpecificData )
SAL_THROW_EXTERN_C();
@@ -159,7 +159,7 @@ uno_threadpool_enter( struct uno_threadpool_Handle * pHandle , void **ppThreadSp
* @param bIsOneway True, if the request is asynchrons. False, if it is synchronous
*
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_putRequest( sal_Sequence *pThreadId,
void *pThreadSpecificData,
void ( SAL_CALL * doRequest ) ( void *pThreadSpecificData ),
@@ -172,7 +172,7 @@ uno_threadpool_putRequest( sal_Sequence *pThreadId,
*
* @param pThreadSpecificData The pointer, that is returned by uno_threadpool_enter.
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_putReply( sal_Sequence *pThreadId, void *pThreadSpecificData ) SAL_THROW_EXTERN_C();
@@ -190,7 +190,7 @@ uno_threadpool_putReply( sal_Sequence *pThreadId, void *pThreadSpecificData ) SA
* When disposing of the bridge has finished, the bridge MUST call
* uno_threadpool_stopDisposeThreads.
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_disposeThreads( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
@@ -203,7 +203,7 @@ uno_threadpool_disposeThreads( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
* @param nDisposeId Identifies the caller of uno_threadpool_createTicket
* @see uno_threadpool_disposeThreads
**/
-SAL_DLLEXPORT void SAL_CALL
+void SAL_CALL
uno_threadpool_stopDisposeThreads( sal_Int64 nDisposeId ) SAL_THROW_EXTERN_C();
#ifdef __cplusplus