Remove unused connect_dlog() 14/260214/1 accepted/tizen/unified/20210623.125322 submit/tizen/20210622.065044
authorHyotaek Shim <hyotaek.shim@samsung.com>
Tue, 22 Jun 2021 06:22:53 +0000 (15:22 +0900)
committerHyotaek Shim <hyotaek.shim@samsung.com>
Tue, 22 Jun 2021 06:22:53 +0000 (15:22 +0900)
Change-Id: Ie88190a9788b3eda5a7d5ce136073ca5f512f0e7
Signed-off-by: Hyotaek Shim <hyotaek.shim@samsung.com>
include/dlog-redirect-stdout.h
src/log-redirect-stdout/lib.c

index 9628acb..2d518a3 100644 (file)
@@ -26,7 +26,6 @@
 extern "C" {
 #endif
 
-int __attribute__((deprecated("Please use dlog_connect_fd()"))) connect_dlog(int buffer, int fileno, const char *tag, int prio);
 int dlog_connect_fd(int buffer, int fileno, const char *tag, int prio);
 _Bool dlog_is_log_fd(int fd);
 
index 4dc3693..0e7f4c6 100644 (file)
@@ -61,8 +61,6 @@ EXPORT_API int dlog_connect_fd(int buffer, int fileno, const char *tag, int prio
        return 0;
 }
 
-EXPORT_API int connect_dlog(int buffer, int fileno, const char *tag, int prio) __attribute__((weak, alias("dlog_connect_fd")));
-
 EXPORT_API _Bool dlog_is_log_fd(int fd)
 {
        char fd_path[sizeof "/proc/self/fd/" STRINGIFY(INT_MAX)];