diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-05-15 10:44:06 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-05-15 10:44:06 -0700 |
commit | dee68663724c7117a51eb3af3d9390e00af832f5 (patch) | |
tree | 695f9f20a3b5c412d7138551c916eabeae0a5b2b /include | |
parent | 722a5c0462f38827f4097065bfc3826b9e0e9fb4 (diff) | |
parent | c41d1c8074ed02acc9d1e749d81e0aafb5efbbfa (diff) | |
download | system_core-dee68663724c7117a51eb3af3d9390e00af832f5.zip system_core-dee68663724c7117a51eb3af3d9390e00af832f5.tar.gz system_core-dee68663724c7117a51eb3af3d9390e00af832f5.tar.bz2 |
Merge change 1693 into donut
* changes:
libsysutils: Introduce 'ServiceManager', for starting/stopping init services
Diffstat (limited to 'include')
-rw-r--r-- | include/sysutils/ServiceManager.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/sysutils/ServiceManager.h b/include/sysutils/ServiceManager.h new file mode 100644 index 0000000..c31dd8f --- /dev/null +++ b/include/sysutils/ServiceManager.h @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2008 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef _SERVICE_MANAGER_H +#define _SERVICE_MANAGER_H + +class ServiceManager { +public: + ServiceManager(); + virtual ~ServiceManager() {} + + int start(const char *name); + int stop(const char *name); + bool isRunning(const char *name); +}; + +#endif |