mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +03:00
15 lines
375 B
C
15 lines
375 B
C
/* SPDX-License-Identifier: LGPL-2.1+ */
|
|
#pragma once
|
|
|
|
typedef struct LockFile {
|
|
char *path;
|
|
int fd;
|
|
int operation;
|
|
} LockFile;
|
|
|
|
int make_lock_file(const char *p, int operation, LockFile *ret);
|
|
int make_lock_file_for(const char *p, int operation, LockFile *ret);
|
|
void release_lock_file(LockFile *f);
|
|
|
|
#define LOCK_FILE_INIT { .fd = -1, .path = NULL }
|