]> git.proxmox.com Git - ceph.git/blame - ceph/src/dmclock/support/src/debug.h
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / dmclock / support / src / debug.h
CommitLineData
7c673cae
FG
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3
4/*
5 * Copyright (C) 2016 Red Hat Inc.
11fdf7f2
TL
6 *
7 * Author: J. Eric Ivancich <ivancich@redhat.com>
8 *
9 * This is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License version
11 * 2.1, as published by the Free Software Foundation. See file
12 * COPYING.
7c673cae
FG
13 */
14
15
16#pragma once
17
18
19#include <signal.h>
20
21
22inline void debugger() {
23 raise(SIGCONT);
24}