diff options
Diffstat (limited to 'vos')
-rw-r--r-- | vos/inc/vos/conditn.hxx | 7 | ||||
-rw-r--r-- | vos/inc/vos/pipe.hxx | 6 | ||||
-rw-r--r-- | vos/inc/vos/socket.hxx | 8 | ||||
-rw-r--r-- | vos/inc/vos/thread.hxx | 8 | ||||
-rw-r--r-- | vos/source/conditn.cxx | 8 | ||||
-rw-r--r-- | vos/source/socket.cxx | 7 | ||||
-rw-r--r-- | vos/source/thread.cxx | 8 | ||||
-rw-r--r-- | vos/source/timer.cxx | 7 |
8 files changed, 40 insertions, 19 deletions
diff --git a/vos/inc/vos/conditn.hxx b/vos/inc/vos/conditn.hxx index 93e66e4776cc..714fce8ecba9 100644 --- a/vos/inc/vos/conditn.hxx +++ b/vos/inc/vos/conditn.hxx @@ -2,9 +2,9 @@ * * $RCSfile: conditn.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:18:11 $ + * last change: $Author: jl $ $Date: 2001-03-14 10:01:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,6 +66,9 @@ #ifndef _OSL_CONDITN_H_ # include <osl/conditn.h> #endif +#ifndef _OSL_TIME_H_ +#include <osl/time.h> +#endif #ifndef _VOS_OBJECT_HXX_ # include <vos/object.hxx> #endif diff --git a/vos/inc/vos/pipe.hxx b/vos/inc/vos/pipe.hxx index f79540cf4f45..ed9339e07069 100644 --- a/vos/inc/vos/pipe.hxx +++ b/vos/inc/vos/pipe.hxx @@ -2,9 +2,9 @@ * * $RCSfile: pipe.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:18:12 $ + * last change: $Author: jl $ $Date: 2001-03-14 10:01:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -82,7 +82,7 @@ # include <vos/refobj.hxx> #endif #ifndef _VOS_SECURITY_HXX_ -# include <vos/security.hxx> +//# include <vos/security.hxx> #endif #ifndef _RTL_USTRING_ # include <rtl/ustring> diff --git a/vos/inc/vos/socket.hxx b/vos/inc/vos/socket.hxx index 250666e6046b..077392f7b74a 100644 --- a/vos/inc/vos/socket.hxx +++ b/vos/inc/vos/socket.hxx @@ -2,9 +2,9 @@ * * $RCSfile: socket.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:18:13 $ + * last change: $Author: jl $ $Date: 2001-03-14 10:01:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -84,6 +84,10 @@ # include <osl/socket.h> #endif +#ifndef _OSL_TIME_H_ +#include <osl/time.h> +#endif + #ifdef _USE_NAMESPACE namespace vos { diff --git a/vos/inc/vos/thread.hxx b/vos/inc/vos/thread.hxx index 64a62c6e5096..3f52bb950b1d 100644 --- a/vos/inc/vos/thread.hxx +++ b/vos/inc/vos/thread.hxx @@ -2,9 +2,9 @@ * * $RCSfile: thread.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hro $ $Date: 2000-09-29 10:54:19 $ + * last change: $Author: jl $ $Date: 2001-03-14 10:01:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -75,6 +75,10 @@ # include <vos/runnable.hxx> #endif +#ifndef _OSL_TIME_H_ +#include <osl/time.h> +#endif + extern void SAL_CALL _OThread_WorkerFunction(void* pthis); #ifdef _USE_NAMESPACE diff --git a/vos/source/conditn.cxx b/vos/source/conditn.cxx index 6ae1e1c68fb1..2a68d48b668c 100644 --- a/vos/source/conditn.cxx +++ b/vos/source/conditn.cxx @@ -2,9 +2,9 @@ * * $RCSfile: conditn.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:18:16 $ + * last change: $Author: jl $ $Date: 2001-03-14 10:01:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,7 +59,9 @@ * ************************************************************************/ - +#ifndef _OSL_TIME_H_ +#include <osl/time.h> +#endif #include <vos/conditn.hxx> #include <vos/diagnose.hxx> diff --git a/vos/source/socket.cxx b/vos/source/socket.cxx index e2086eabba11..3f697dfb851e 100644 --- a/vos/source/socket.cxx +++ b/vos/source/socket.cxx @@ -2,9 +2,9 @@ * * $RCSfile: socket.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: mfe $ $Date: 2001-02-26 16:32:33 $ + * last change: $Author: jl $ $Date: 2001-03-14 10:01:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -63,6 +63,9 @@ #include <rtl/memory.h> +#ifndef _OSL_TIME_H_ +#include <osl/time.h> +#endif #include <vos/socket.hxx> #include <vos/diagnose.hxx> //#include <osl/tools.h> diff --git a/vos/source/thread.cxx b/vos/source/thread.cxx index 1623f157f928..d632bafa2a83 100644 --- a/vos/source/thread.cxx +++ b/vos/source/thread.cxx @@ -2,9 +2,9 @@ * * $RCSfile: thread.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hro $ $Date: 2000-09-29 10:53:07 $ + * last change: $Author: jl $ $Date: 2001-03-14 10:01:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,7 +59,9 @@ * ************************************************************************/ - +#ifndef _OSL_TIME_H_ +#include <osl/time.h> +#endif #include <vos/diagnose.hxx> #include <vos/object.hxx> #include <vos/thread.hxx> diff --git a/vos/source/timer.cxx b/vos/source/timer.cxx index 726a3592f28d..7775b847d910 100644 --- a/vos/source/timer.cxx +++ b/vos/source/timer.cxx @@ -2,9 +2,9 @@ * * $RCSfile: timer.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mfe $ $Date: 2001-02-01 12:28:40 $ + * last change: $Author: jl $ $Date: 2001-03-14 10:01:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,6 +59,9 @@ * ************************************************************************/ +#ifndef _OSL_TIME_H_ +#include <osl/time.h> +#endif #include <vos/timer.hxx> #include <vos/diagnose.hxx> |