I'm trying to implement a dtrace probe that takes a char * argument. Everything compiles fine, but when I run the dtrace script, I get this error:
dtrace: failed to compile script timing.d: line 3: printf( ) argument #2 is incompatible with conversion #1 prototype:
conversion: %s
prototype: char [] or string (or use stringof)
argument: int64_t
make: *** [test] Error 1
$ make clean
$ make test
I have this problem now. Did you ever find a solution?