Last change
on this file since 58552 was 58552, checked in by vboxsync, 9 years ago |
pr7179. Fixes and improvement in the classes GuestSessionTask, GuestSession, GuestProcess, ThreadTask
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.4 KB
|
Line | |
---|
1 | /** @file
|
---|
2 | * VirtualBox ThreadTask class definition
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2015 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef ____H_THREADTASK
|
---|
18 | #define ____H_THREADTASK
|
---|
19 |
|
---|
20 | #include "VBox/com/string.h"
|
---|
21 |
|
---|
22 | struct ThreadVoidData
|
---|
23 | {
|
---|
24 | public:
|
---|
25 | ThreadVoidData(){};
|
---|
26 | virtual ~ThreadVoidData(){};
|
---|
27 | };
|
---|
28 |
|
---|
29 | class ThreadTask
|
---|
30 | {
|
---|
31 | public:
|
---|
32 | ThreadTask(const Utf8Str &t) : m_pThread(NULL), m_strTaskName(t){};
|
---|
33 | virtual ~ThreadTask(){};
|
---|
34 | HRESULT createThread(PRTTHREAD pThread = NULL, RTTHREADTYPE enmType = RTTHREADTYPE_MAIN_WORKER);
|
---|
35 | virtual void handler() = 0;
|
---|
36 | static DECLCALLBACK(int) taskHandler(RTTHREAD thread, void *pvUser);
|
---|
37 | static HRESULT setErrorStatic(HRESULT aResultCode, const Utf8Str &aText);
|
---|
38 |
|
---|
39 | inline Utf8Str getTaskName() const {return m_strTaskName;};
|
---|
40 |
|
---|
41 | protected:
|
---|
42 | ThreadTask():m_pThread(NULL), m_strTaskName("GenericTask"){};
|
---|
43 | PRTTHREAD m_pThread;
|
---|
44 | Utf8Str m_strTaskName;
|
---|
45 | };
|
---|
46 |
|
---|
47 | #endif
|
---|
48 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.