apply FSL(Flora Software License)
[framework/system/power-manager.git] / pm_event / pm_event.c
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.tizenopensource.org/license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15 */
16
17
18 #include <stdio.h>
19 #include <string.h>
20 #include <limits.h>
21
22 #define PM_EVENT_NOTI_PATH     "/opt/share/noti/pm_event"
23
24 int main(int argc, char *argv[])
25 {
26         if(argc != 3) {
27                 return -1;
28         }
29
30         if(strlen(argv[1]) + strlen(argv[2]) > PATH_MAX) {
31                 return -1;
32         }
33
34         int i;
35         char buf[PATH_MAX + 25];
36         snprintf(buf, PATH_MAX + 25, "echo %s %s >> %s", argv[1], argv[2], PM_EVENT_NOTI_PATH);
37         system(buf);
38
39         return 1;
40 }