Commit 01cc72b1 authored by Ahmad Nemati's avatar Ahmad Nemati

dsd

parent fca86395
Pipeline #117 failed with stages
...@@ -47,7 +47,7 @@ int kwrite (int fd, const void *buf, int count); ...@@ -47,7 +47,7 @@ int kwrite (int fd, const void *buf, int count);
void kprintf (const char *format, ...) __attribute__ ((format (printf, 1, 2))); void kprintf (const char *format, ...) __attribute__ ((format (printf, 1, 2)));
#define vkprintf(verbosity_level, format, ...) do { \ #define vkprintf(verbosity_level, format, ...) do { \
if ((verbosity_level) > verbosity) { \ if ((verbosity_level) > verbosity) { \
break; \ \
} \ } \
kprintf ((format), ##__VA_ARGS__); \ kprintf ((format), ##__VA_ARGS__); \
} while (0) } while (0)
......
...@@ -134,7 +134,7 @@ void tcp_rpc_conn_send_data_im (JOB_REF_ARG (C), int len, void *Q) { ...@@ -134,7 +134,7 @@ void tcp_rpc_conn_send_data_im (JOB_REF_ARG (C), int len, void *Q) {
int tcp_rpc_default_execute (connection_job_t C, int op, struct raw_message *raw) /* {{{ */ { int tcp_rpc_default_execute (connection_job_t C, int op, struct raw_message *raw) /* {{{ */ {
struct connection_info *c = CONN_INFO (C); struct connection_info *c = CONN_INFO (C);
vkprintf (1, "rpcc_execute: fd=%d, op=%d, len=%d\n", c->fd, op, raw->total_bytes); vkprintf ( "rpcc_execute: fd=%d, op=%d, len=%d\n", c->fd, op, raw->total_bytes);
if (op == RPC_PING && raw->total_bytes == 12) { if (op == RPC_PING && raw->total_bytes == 12) {
c->last_response_time = precise_now; c->last_response_time = precise_now;
int P[3]; int P[3];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment