mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-12-08 00:00:12 +03:00
Some checks are pending
build / bcachefs-tools-deb (ubuntu-22.04) (push) Waiting to run
build / bcachefs-tools-deb (ubuntu-24.04) (push) Waiting to run
build / bcachefs-tools-rpm (push) Waiting to run
build / bcachefs-tools-msrv (push) Waiting to run
Nix Flake actions / nix-matrix (push) Waiting to run
Nix Flake actions / ${{ matrix.name }} (${{ matrix.system }}) (push) Blocked by required conditions
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
44 lines
951 B
C
44 lines
951 B
C
#ifndef __LINUX_COMPLETION_H
|
|
#define __LINUX_COMPLETION_H
|
|
|
|
/*
|
|
* (C) Copyright 2001 Linus Torvalds
|
|
*
|
|
* Atomic wait-for-completion handler data structures.
|
|
* See kernel/sched/completion.c for details.
|
|
*/
|
|
|
|
#include <linux/wait.h>
|
|
|
|
struct completion {
|
|
unsigned int done;
|
|
wait_queue_head_t wait;
|
|
};
|
|
|
|
#define DECLARE_COMPLETION(work) \
|
|
struct completion work = { \
|
|
.done = 0, \
|
|
.wait = __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) \
|
|
}
|
|
|
|
#define DECLARE_COMPLETION_ONSTACK(work) DECLARE_COMPLETION(work)
|
|
|
|
static inline void init_completion(struct completion *x)
|
|
{
|
|
x->done = 0;
|
|
init_waitqueue_head(&x->wait);
|
|
}
|
|
|
|
static inline void reinit_completion(struct completion *x)
|
|
{
|
|
x->done = 0;
|
|
}
|
|
|
|
void complete(struct completion *);
|
|
void wait_for_completion(struct completion *);
|
|
unsigned long wait_for_completion_timeout(struct completion *, unsigned long);
|
|
|
|
#define wait_for_completion_interruptible(x) (wait_for_completion(x), 0)
|
|
|
|
#endif
|