Home | History | Annotate | Line # | Download | only in selftests
      1 /*	$NetBSD: igt_atomic.h,v 1.2 2021/12/18 23:45:31 riastradh Exp $	*/
      2 
      3 /* SPDX-License-Identifier: MIT */
      4 /*
      5  * Copyright  2018 Intel Corporation
      6  */
      7 
      8 #ifndef IGT_ATOMIC_H
      9 #define IGT_ATOMIC_H
     10 
     11 struct igt_atomic_section {
     12 	const char *name;
     13 	void (*critical_section_begin)(void);
     14 	void (*critical_section_end)(void);
     15 };
     16 
     17 extern const struct igt_atomic_section igt_atomic_phases[];
     18 
     19 #endif /* IGT_ATOMIC_H */
     20