LibreOffice
LibreOffice 6.4 SDK C/C++ API Reference
thread.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 #ifndef INCLUDED_OSL_THREAD_H
21 #define INCLUDED_OSL_THREAD_H
22 
23 #include "sal/config.h"
24 
25 #include "osl/time.h"
26 #include "rtl/textenc.h"
27 #include "sal/saldllapi.h"
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
37 typedef void* oslThread;
38 
41 typedef void (SAL_CALL *oslWorkerFunction)(void*);
42 
48 typedef enum
49 {
55  osl_Thread_PriorityUnknown, /* don't use to set */
58 
59 
60 typedef sal_uInt32 oslThreadIdentifier;
61 
62 typedef void* oslThreadKey;
63 
75 SAL_DLLPUBLIC oslThread SAL_CALL osl_createThread(oslWorkerFunction pWorker, void* pThreadData);
76 
89 
98 
107 
114 
121 
129 
137 
145 
152 
158 SAL_DLLPUBLIC void SAL_CALL osl_waitThread(const TimeValue* pDelay);
159 
166 
176 
184 SAL_DLLPUBLIC void SAL_CALL osl_yieldThread(void);
185 
196 SAL_DLLPUBLIC void SAL_CALL osl_setThreadName(char const * name);
197 
198 /* Callback when data stored in a thread key is no longer needed */
199 
200 typedef void (SAL_CALL *oslThreadKeyCallbackFunction)(void *);
201 
204 
207 
210 
213 
216 
221 
222 #ifdef __cplusplus
223 }
224 #endif
225 
226 #endif // INCLUDED_OSL_THREAD_H
227 
228 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
osl_Thread_PriorityBelowNormal
@ osl_Thread_PriorityBelowNormal
Definition: thread.h:53
oslThreadKey
void * oslThreadKey
Definition: thread.h:62
osl_isThreadRunning
SAL_DLLPUBLIC sal_Bool osl_isThreadRunning(const oslThread Thread)
Returns True if the thread was created and has not terminated yet.
osl_terminateThread
SAL_DLLPUBLIC void osl_terminateThread(oslThread Thread)
The requested thread will get terminate the next time scheduleThread() is called.
osl_getThreadIdentifier
SAL_DLLPUBLIC oslThreadIdentifier osl_getThreadIdentifier(oslThread Thread)
Get the identifier for the specified thread or if parameter Thread is NULL of the current active thre...
oslThread
void * oslThread
Opaque data type for threads.
Definition: thread.h:37
rtl_TextEncoding
sal_uInt16 rtl_TextEncoding
The various supported text encodings.
Definition: textenc.h:33
osl_getThreadPriority
SAL_DLLPUBLIC oslThreadPriority osl_getThreadPriority(const oslThread Thread)
Retrieves the threads priority.
osl_Thread_PriorityUnknown
@ osl_Thread_PriorityUnknown
Definition: thread.h:55
textenc.h
osl_suspendThread
SAL_DLLPUBLIC void osl_suspendThread(oslThread Thread)
Suspend the execution of the thread.
saldllapi.h
osl_setThreadPriority
SAL_DLLPUBLIC void osl_setThreadPriority(oslThread Thread, oslThreadPriority Priority)
Changes the threads priority.
time.h
osl_resumeThread
SAL_DLLPUBLIC void osl_resumeThread(oslThread Thread)
Wake-up a thread that was suspended with suspend() or createSuspended().
osl_getThreadTextEncoding
SAL_DLLPUBLIC rtl_TextEncoding osl_getThreadTextEncoding(void)
Get the current thread local text encoding.
sal_Bool
unsigned char sal_Bool
Definition: types.h:38
config.h
osl_getThreadKeyData
SAL_DLLPUBLIC void * osl_getThreadKeyData(oslThreadKey Key)
Get to key associated thread specific data.
osl_Thread_PriorityHighest
@ osl_Thread_PriorityHighest
Definition: thread.h:50
osl_setThreadTextEncoding
SAL_DLLPUBLIC rtl_TextEncoding osl_setThreadTextEncoding(rtl_TextEncoding Encoding)
Set the thread local text encoding.
SAL_DLLPUBLIC
#define SAL_DLLPUBLIC
Definition: saldllapi.h:30
oslWorkerFunction
void(* oslWorkerFunction)(void *)
the function-ptr.
Definition: thread.h:41
osl_Thread_PriorityNormal
@ osl_Thread_PriorityNormal
Definition: thread.h:52
osl_yieldThread
SAL_DLLPUBLIC void osl_yieldThread(void)
Offers the rest of the threads time-slice to the OS.
osl_Thread_PriorityAboveNormal
@ osl_Thread_PriorityAboveNormal
Definition: thread.h:51
osl_waitThread
SAL_DLLPUBLIC void osl_waitThread(const TimeValue *pDelay)
Suspends the execution of the calling thread for at least the given time.
oslThreadPriority
oslThreadPriority
levels of thread-priority Note that oslThreadPriorityUnknown might be returned by getPriorityOfThread...
Definition: thread.h:49
TimeValue
Definition: time.h:66
osl_Thread_Priority_FORCE_EQUAL_SIZE
@ osl_Thread_Priority_FORCE_EQUAL_SIZE
Definition: thread.h:56
osl_Thread_PriorityLowest
@ osl_Thread_PriorityLowest
Definition: thread.h:54
osl_scheduleThread
SAL_DLLPUBLIC sal_Bool osl_scheduleThread(oslThread Thread)
Schedules in thread to wait till after time slice of specified thread.
osl_createThread
SAL_DLLPUBLIC oslThread osl_createThread(oslWorkerFunction pWorker, void *pThreadData)
Create the thread, using the function-ptr pWorker as its main (worker) function.
SAL_MAX_ENUM
#define SAL_MAX_ENUM
Definition: types.h:223
oslThreadKeyCallbackFunction
void(* oslThreadKeyCallbackFunction)(void *)
Definition: thread.h:200
osl_setThreadKeyData
SAL_DLLPUBLIC sal_Bool osl_setThreadKeyData(oslThreadKey Key, void *pData)
Set to key associated thread specific data.
osl_joinWithThread
SAL_DLLPUBLIC void osl_joinWithThread(oslThread Thread)
Blocks the calling thread until Thread has terminated.
osl_setThreadName
SAL_DLLPUBLIC void osl_setThreadName(char const *name)
Attempts to set the name of the current thread.
osl_destroyThreadKey
SAL_DLLPUBLIC void osl_destroyThreadKey(oslThreadKey Key)
Destroy a key to an associated thread local storage pointer.
osl_destroyThread
SAL_DLLPUBLIC void osl_destroyThread(oslThread Thread)
Release the thread handle.
osl_createThreadKey
SAL_DLLPUBLIC oslThreadKey osl_createThreadKey(oslThreadKeyCallbackFunction pCallback)
Create a key to an associated thread local storage pointer.
osl_createSuspendedThread
SAL_DLLPUBLIC oslThread osl_createSuspendedThread(oslWorkerFunction pWorker, void *pThreadData)
Create the thread, using the function-ptr pWorker as its main (worker) function.
oslThreadIdentifier
sal_uInt32 oslThreadIdentifier
Definition: thread.h:60