From bcbbe2d1f37505c135344710a2158fd4d4cc66a0 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 1 Nov 2013 15:52:45 +0200 Subject: [PATCH] android/socket: Log not implemented HAL functions This makes it easier to spot which functions the HAL is calling. --- android/socket.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/android/socket.c b/android/socket.c index 39709cdbb..b6eed6e25 100644 --- a/android/socket.c +++ b/android/socket.c @@ -34,11 +34,15 @@ static int handle_listen(void *buf) { + DBG("Not implemented"); + return -1; } static int handle_connect(void *buf) { + DBG("Not implemented"); + return -1; } -- 2.11.0