summaryrefslogtreecommitdiff
path: root/tizen/DEVICE/src/sysnoti.c
diff options
context:
space:
mode:
Diffstat (limited to 'tizen/DEVICE/src/sysnoti.c')
-rw-r--r--tizen/DEVICE/src/sysnoti.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tizen/DEVICE/src/sysnoti.c b/tizen/DEVICE/src/sysnoti.c
index 52e51b4..56aaad8 100644
--- a/tizen/DEVICE/src/sysnoti.c
+++ b/tizen/DEVICE/src/sysnoti.c
@@ -98,6 +98,7 @@ static int __sysnoti_send(struct sysnoti_type *msg)
close(sockfd);
return -1;
}
+ MODULE_LOG("connect : %x", sockfd);
__send_int(sockfd, msg->pid);
__send_int(sockfd, msg->cmd);
@@ -107,6 +108,7 @@ static int __sysnoti_send(struct sysnoti_type *msg)
for (i = 0; i < msg->argc; i++)
__send_str(sockfd, msg->argv[i]);
+ MODULE_LOG("read");
retry_cnt = 0;
while ((r = read(sockfd, &ret, sizeof(int))) < 0) {
@@ -126,6 +128,7 @@ static int __sysnoti_send(struct sysnoti_type *msg)
++retry_cnt;
}
+ MODULE_LOG("close (ret : %d) : %x", ret, sockfd);
close(sockfd);
return ret;
}