I'm not very strong in C, but I'm working with the NDK right now and I need help logging address of a variable in hex. I've been using __android_log_print to print generic log messages, but how do I tell C to convert address of a variable to a char array?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

I never worked with android NDK, but I'm assuming __android_log_print works with printf format characters. In that case you may use %p.

Let's say we have a variable int a = 10;. To print its address:

printf("%p\n", &a); //This will print in hexadecimal

EDIT:

Accepted answer:

__android_log_print(SOME_PRIO, "sometag", "%p", &a);
link|improve this answer
Yep, but __android_log_print does not have formatting like printf does, so I need to actually convert an address to string before passing it to this function. – Phonon Aug 11 '11 at 19:50
Ok, I got a quick look at the documentation and thought one could do something like __android_log_print(SOME_PRIO, "sometag", "%p", &a);, sorry then. – Fred Aug 11 '11 at 19:54
No idea how I missed that. Thanks = ) – Phonon Aug 11 '11 at 19:55
No prob, glad I could help. – Fred Aug 11 '11 at 19:57
feedback

I work with Android NDK many times and I have tried before use native logcat.

__android_log_print(6, "deneme", "text"); -> this is error message
typedef enum android_LogPriority {
ANDROID_LOG_UNKNOWN = 0,
ANDROID_LOG_DEFAULT,    /* only for SetMinPriority() */
ANDROID_LOG_VERBOSE,
ANDROID_LOG_DEBUG,
ANDROID_LOG_INFO,
ANDROID_LOG_WARN,
ANDROID_LOG_ERROR,
ANDROID_LOG_FATAL,
ANDROID_LOG_SILENT,     /* only for SetMinPriority(); must be last */
} android_LogPriority;

and than include header in c source files

#include <jni.h>
#include <android/log.h>

than makefile look like

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := deneme-jni
LOCAL_SRC_FILES := deneme.c
LOCAL_LDLIBS    := -llog  

include $(BUILD_SHARED_LIBRARY)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.