Remove appid option accepted/tizen_5.0_unified tizen_5.0 accepted/tizen/5.0/unified/20181102.031931 accepted/tizen/5.0/unified/20181106.202146 accepted/tizen/unified/20180912.061704 accepted/tizen/unified/20180912.061708 submit/tizen/20180911.125435 submit/tizen/20180911.141534 submit/tizen/20180912.070240 submit/tizen_5.0/20181101.000009 submit/tizen_5.0/20181106.000001
authorAleksei Vereshchagin <avereschagin@dev.rtsoft.ru>
Wed, 5 Sep 2018 16:29:13 +0000 (19:29 +0300)
committerAleksei Vereshchagin <avereschagin@dev.rtsoft.ru>
Mon, 10 Sep 2018 14:00:10 +0000 (17:00 +0300)
README.md
profctl.c

index 74be008..d214064 100644 (file)
--- a/README.md
+++ b/README.md
@@ -14,8 +14,6 @@ profctl [options...] [command [args]]
 
 ### Options
 
-* `-a`, `--appid=ID`
-  Tizen Application ID
 * `-p, --pipe=NAME`
   name of pipe file
 * `-e, --exec=NAME`
index 5b42925..74d7fdb 100644 (file)
--- a/profctl.c
+++ b/profctl.c
@@ -37,7 +37,6 @@ static int stat_period_usec = 500000; // 0.5 seconds
 static struct termios sterm;
 #endif /* TIZEN */
 
-static char *appid = NULL;
 static int app_pid = -1;
 static int cmd_pid = -1;
 static int cmd_idx = -1;
@@ -74,7 +73,6 @@ int is_running(int pid)
 }
 
 static struct option long_options[] = {
-       {"appid",       required_argument, 0, 'a'},
        {"pipe",        required_argument, 0, 'p'},
        {"exec",        required_argument, 0, 'e'},
        {"error",       required_argument, 0, 'o'},
@@ -213,7 +211,7 @@ static int process_option(int argc, char **argv)
        int option_index;
        int result = -1;
 
-       result = getopt_long(argc, argv, "-a:p:ve:o:it:wc:d:s:E::",
+       result = getopt_long(argc, argv, "-p:ve:o:it:wc:d:s:E::",
                long_options, &option_index);
 
        if (result == 1) {
@@ -236,7 +234,6 @@ static int process_option(int argc, char **argv)
        }
 
        switch (result) {
-       case 'a': CheckValue(&appid, "appid"); break;
        case 'p': CheckValue(&pname, "pipe name"); break;
        case 'e': CheckValue(&ename, "exe name"); break;
        case 'o': CheckValue(&oname, "error name"); break;
@@ -606,12 +603,6 @@ int main(int argc, char **argv)
        while (!process_option(argc, argv));
 
        atexit(finish);
-#if TIZEN
-       if (appid == NULL) {
-               log_error("Unknown app id");
-               exit(1);
-       }
-#endif /* TIZEN */
 
        if (oname == NULL) {
                oname = "/tmp/profctl.log";