blob: 35c9c84e81b5c59668dcd971d272edba4e8e5505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (C) 2014-2015 Red Hat ; see COPYRIGHT for license
*/
#ifndef LOCK_H_
#define LOCK_H_
#include "instance.h"
#include "util.h"
void
run_exclusive_enter(sample_instance_t *inst, isc_result_t *statep);
void
run_exclusive_exit(sample_instance_t *inst, isc_result_t state);
#endif /* LOCK_H_ */
|