1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef _CPPU_THREADPOOL_JOBQUEUE_HXX_
21 #define _CPPU_THREADPOOL_JOBQUEUE_HXX_
24 #include <sal/types.h>
26 #include <osl/conditn.h>
27 #include <osl/mutex.hxx>
29 #include <boost/shared_ptr.hpp>
31 namespace cppu_threadpool
33 extern "C" typedef void (SAL_CALL RequestFun
)(void *);
37 void *pThreadSpecificData
;
38 RequestFun
* doRequest
;
41 typedef ::std::list
< struct Job
> JobList
;
43 typedef ::std::list
< sal_Int64
> CallStackList
;
45 class DisposedCallerAdmin
;
46 typedef boost::shared_ptr
<DisposedCallerAdmin
> DisposedCallerAdminHolder
;
54 void add( void *pThreadSpecificData
, RequestFun
* doRequest
);
56 void *enter( sal_Int64 nDisposeId
, sal_Bool bReturnWhenNoJob
= sal_False
);
57 void dispose( sal_Int64 nDisposeId
);
62 sal_Bool
isEmpty() const;
63 sal_Bool
isCallstackEmpty() const;
64 sal_Bool
isBusy() const;
67 mutable ::osl::Mutex m_mutex
;
69 CallStackList m_lstCallstack
;
71 sal_Bool m_bSuspended
;
72 oslCondition m_cndWait
;
73 DisposedCallerAdminHolder m_DisposedCallerAdmin
;
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */