File: falloc.h

package info (click to toggle)
lcagent 0.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,188 kB
  • sloc: ansic: 11,202; sh: 1,721; makefile: 318; yacc: 151; lex: 55
file content (15 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only */
/* Copyright (c) 2021,2023 Brett Sheffield <bacs@librecast.net> */

#define FALLOC_NOFAIL -1

/* wrappers for *alloc */
__attribute__((malloc)) __attribute__((alloc_size(1,2)))
void *calloc(size_t nmemb, size_t size);

__attribute__((malloc)) __attribute__((alloc_size(1)))
void *malloc(size_t size);

/* set *alloc calls to force failure with ENOMEM after failafter allocations.
 * Set failafter to -1 to never force fail (default) */
void falloc_setfail(int failafter);