blob: b76dc88022e8cb8211d0cb68cddc819d5a632923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* (c) 2007,2008 Andrei Nigmatulin */
#include "fpm_config.h"
#include <sys/types.h>
#include "fpm_trace.h"
int fpm_trace_get_strz(char *buf, size_t sz, long addr) /* {{{ */
{
int i;
long l = addr;
char *lc = (char *) &l;
i = l % SIZEOF_LONG;
l -= i;
for (addr = l; ; addr += SIZEOF_LONG) {
if (0 > fpm_trace_get_long(addr, &l)) {
return -1;
}
for ( ; i < SIZEOF_LONG; i++) {
--sz;
if (sz && lc[i]) {
*buf++ = lc[i];
continue;
}
*buf = '\0';
return 0;
}
i = 0;
}
}
/* }}} */
|