Add setpgid call in OspMain
authorKeebong <keebong.bahn@samsung.com>
Mon, 15 Apr 2013 00:26:53 +0000 (09:26 +0900)
committerKeebong <keebong.bahn@samsung.com>
Mon, 15 Apr 2013 00:26:53 +0000 (09:26 +0900)
Change-Id: Iddb9704632f195848fb1fc8ebacd5281e6fb2f2a
Signed-off-by: Keebong <keebong.bahn@samsung.com>
data/capability_m0_modem.conf
src/FtAppEntry.cpp

index 182dee8..8f94e5d 100644 (file)
@@ -42,6 +42,6 @@ http://tizen.org/feature/screen.coordinate_system.logical.normal
 http://tizen.org/system/build.string=Tizen_Ref.Device-PQ_20130408.1842
 http://tizen.org/feature/graphics.acceleration
 http://tizen.org/feature/screen.auto_rotation
-http: //tizen.org/feature/network.telephony
-http: //tizen.org/feature/network.telephony.mms
-http: //tizen.org/feature/network.telephony.sms.cbs
+http://tizen.org/feature/network.telephony
+http://tizen.org/feature/network.telephony.mms
+http://tizen.org/feature/network.telephony.sms.cbs
index dd147ec..dd58f12 100644 (file)
@@ -46,6 +46,10 @@ OspMain(int argc, char* pArgv[])
        result r = E_SUCCESS;
 
        AppLog("Application started.");
+
+       int pid = getpid();
+       setpgid(pid, pid);
+
        ArrayList* pArgs = new ArrayList();
        pArgs->Construct();