summaryrefslogtreecommitdiffstats
path: root/include/sysutils
diff options
context:
space:
mode:
authorSan Mehat <san@google.com>2009-05-14 14:58:45 -0700
committerSan Mehat <san@google.com>2009-05-15 10:40:23 -0700
commitc41d1c8074ed02acc9d1e749d81e0aafb5efbbfa (patch)
tree23133380d778a55675186b160e90e7ff73670bc2 /include/sysutils
parentc83cd879d45e667fbb4763f18c908928ee9d67d8 (diff)
downloadsystem_core-c41d1c8074ed02acc9d1e749d81e0aafb5efbbfa.zip
system_core-c41d1c8074ed02acc9d1e749d81e0aafb5efbbfa.tar.gz
system_core-c41d1c8074ed02acc9d1e749d81e0aafb5efbbfa.tar.bz2
libsysutils: Introduce 'ServiceManager', for starting/stopping init services
Signed-off-by: San Mehat <san@google.com>
Diffstat (limited to 'include/sysutils')
-rw-r--r--include/sysutils/ServiceManager.h30
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