Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2018 Intel Corporation
0004  */
0005 
0006 #ifndef IGT_ATOMIC_H
0007 #define IGT_ATOMIC_H
0008 
0009 struct igt_atomic_section {
0010     const char *name;
0011     void (*critical_section_begin)(void);
0012     void (*critical_section_end)(void);
0013 };
0014 
0015 extern const struct igt_atomic_section igt_atomic_phases[];
0016 
0017 #endif /* IGT_ATOMIC_H */