Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgors Homjakovs <git-no-reply@zabbix.com>2014-07-29 17:05:56 +0400
committerIgors Homjakovs <git-no-reply@zabbix.com>2014-07-29 17:05:56 +0400
commit8152ed2025f4e01afbf08cb5ed1b09192f77479a (patch)
treeff0989b34f9e1165709b835831d1b68a7d55be4e /include/threads.h
parent6b2d755cbe3cdd62667d6deac35d3c4599ed8770 (diff)
...G...PS. [ZBXNEXT-101] thread_num variable renamed to server_num, and minor code improvements
Diffstat (limited to 'include/threads.h')
-rw-r--r--include/threads.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/threads.h b/include/threads.h
index 6f3479a6514..af78924054f 100644
--- a/include/threads.h
+++ b/include/threads.h
@@ -74,9 +74,9 @@
typedef struct
{
- int thread_num; /* number of thread in a group of all agent threads */
- int process_num; /* number of thread in a specific group of threads (e.g. listeners) */
- unsigned char process_type; /* type of thread */
+ int server_num;
+ int process_num;
+ unsigned char process_type;
void *args;
}
zbx_thread_args_t;