projects
/
multipath-tools
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
simplify multipath signal handlers
[multipath-tools/.git]
/
libmultipath
/
lock.c
1
#include <pthread.h>
2
#include "lock.h"
3
#include <stdio.h>
4
5
void cleanup_lock (void * data)
6
{
7
unlock ((*(struct mutex_lock *)data));
8
}
9