File: lock.c

package info (click to toggle)
multipath-tools 0.5.0-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,800 kB
  • sloc: ansic: 26,772; sh: 844; makefile: 374
file content (9 lines) | stat: -rw-r--r-- 136 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#include <pthread.h>
#include "lock.h"
#include <stdio.h>

void cleanup_lock (void * data)
{
	unlock ((*(struct mutex_lock *)data));
}