summaryrefslogtreecommitdiff
path: root/include/osl
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-12-20 16:39:24 +0100
committerJulien Nabet <serval2412@yahoo.fr>2014-12-20 16:39:24 +0100
commitb63571f510793376a334d346974d4d0d73b9a0ff (patch)
tree73f5bfeadb67c697cf8474381e021b9e23beb863 /include/osl
parentdc08157dff6d997b4e5b19c9496ddf54727ba26f (diff)
Typos
Change-Id: I3475be796cf2655d9b619b86c9686aeef4b97b82
Diffstat (limited to 'include/osl')
-rw-r--r--include/osl/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osl/thread.h b/include/osl/thread.h
index 7c2dd3c270e2..0a8eb4c14072 100644
--- a/include/osl/thread.h
+++ b/include/osl/thread.h
@@ -62,7 +62,7 @@ typedef sal_uInt32 oslThreadIdentifier;
typedef void* oslThreadKey;
/** Create the thread, using the function-ptr pWorker as
- its main (worker) function. This functions receives in
+ its main (worker) function. This function receives in
its void* parameter the value supplied by pThreadData.
Once the OS-structures are initialized,the thread starts
running.
@@ -71,7 +71,7 @@ typedef void* oslThreadKey;
SAL_DLLPUBLIC oslThread SAL_CALL osl_createThread(oslWorkerFunction pWorker, void* pThreadData);
/** Create the thread, using the function-ptr pWorker as
- its main (worker) function. This functions receives in
+ its main (worker) function. This function receives in
its void* parameter the value supplied by pThreadData.
The thread will be created, but it won't start running.
To wake-up the thread, use resume().