add WITH_SENDFILE profiling data (from Pierre Belanger)
[Samba.git] / source / utils / msgtest.c
blob3fbf95af8fa921deaed9a2861a874ae8e9ada80c
1 /*
2 Unix SMB/Netbios implementation.
3 Version 3.0
4 Copyright (C) Andrew Tridgell 2000
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 test code for internal messaging
25 #define NO_SYSLOG
27 #include "includes.h"
29 static int pong_count;
31 /****************************************************************************
32 a useful function for testing the message system
33 ****************************************************************************/
34 void pong_message(int msg_type, pid_t src, void *buf, size_t len)
36 pong_count++;
39 int main(int argc, char *argv[])
41 pid_t pid;
42 int i, n;
43 static pstring servicesf = CONFIGFILE;
44 char buf[12];
46 TimeInit();
47 setup_logging(argv[0],True);
49 charset_initialise();
51 lp_load(servicesf,False,False,False);
53 message_init();
55 if (argc != 3) {
56 fprintf(stderr, "%s: Usage - %s pid count\n", argv[0], argv[0]);
57 exit(1);
60 pid = atoi(argv[1]);
61 n = atoi(argv[2]);
63 message_register(MSG_PONG, pong_message);
65 for (i=0;i<n;i++) {
66 message_send_pid(pid, MSG_PING, NULL, 0, True);
69 while (pong_count < i) {
70 message_dispatch();
71 msleep(1);
74 /* Now test that the duplicate filtering code works. */
75 pong_count = 0;
77 safe_strcpy(buf, "1234567890", sizeof(buf)-1);
79 for (i=0;i<n;i++) {
80 message_send_pid(getpid(), MSG_PING, NULL, 0, False);
81 message_send_pid(getpid(), MSG_PING, buf, 11, False);
84 for (i=0;i<n;i++) {
85 message_dispatch();
86 msleep(1);
89 if (pong_count != 2) {
90 fprintf(stderr, "Duplicate filter failed (%d).\n", pong_count);
91 exit(1);
94 return (0);