On Sun, Jun 26, 2022 at 05:49:41AM +0200, Mohamed Atef via Gcc wrote: > What is the difference between functions with GOMP prefixes and the other > with gomp?
GOMP_ prefix is used on exported libgomp APIs used by code emitted by the compiler for OpenMP programs, various OpenMP pragmas that need some library implementation call such functions. gomp_ prefix is used on functions internal to the library. omp_ prefix is used for standard mandated API calls. Jakub