1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/*
* Copyright (C) 2024-2025 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef CORE_TRY_OPEN_H
#define CORE_TRY_OPEN_H
#define STRESS_TRY_OPEN_OK (0) /* File can be opened */
#define STRESS_TRY_OPEN_FORK_FAIL (1) /* Try failed, e.g. can't fork */
#define STRESS_TRY_OPEN_WAIT_FAIL (2) /* Wait on child open failed */
#define STRESS_TRY_OPEN_EXIT_FAIL (3) /* Can't get _exit() status */
#define STRESS_TRY_OPEN_FAIL (4) /* Can't open file */
#define STRESS_TRY_AGAIN (5) /* Device busy, try again */
extern int stress_try_open(stress_args_t *args, const char *path,
const int flags, const unsigned long int timeout_ns);
extern int stress_open_timeout(const char *name, const char *path,
const int flags, const unsigned long int timeout_ns);
#endif
|