mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
18 lines
295 B
C
18 lines
295 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the LGPL.
|
|
*/
|
|
|
|
#ifndef LVM_MEMLOCK_H
|
|
#define LVM_MEMLOCK_H
|
|
|
|
#include "toolcontext.h"
|
|
|
|
void memlock_inc(void);
|
|
void memlock_dec(void);
|
|
int memlock(void);
|
|
void memlock_init(struct cmd_context *cmd);
|
|
|
|
#endif
|