mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-18 04:56:56 +02:00
This one was introduced 5 years ago for debugging and never really used. It is the one which used to cause circular dependencies issues. Let's drop it instead of starting to split the debug include in two.
35 lines
1.2 KiB
C
35 lines
1.2 KiB
C
/*
|
|
* include/haproxy/debug.h
|
|
* This files contains some macros to help debugging.
|
|
*
|
|
* Copyright (C) 2000-2020 Willy Tarreau - w@1wt.eu
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _HAPROXY_DEBUG_H
|
|
#define _HAPROXY_DEBUG_H
|
|
|
|
struct task;
|
|
struct buffer;
|
|
extern volatile unsigned long threads_to_dump;
|
|
extern unsigned int debug_commands_issued;
|
|
void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx);
|
|
void ha_thread_dump(struct buffer *buf, int thr, int calling_tid);
|
|
void ha_thread_dump_all_to_trash();
|
|
void ha_panic();
|
|
|
|
#endif /* _HAPROXY_DEBUG_H */
|