Searched defs:fatal_error (Results 1 - 1 of 1) sorted by relevance
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/ |
H A D | config.c | 61 static void fatal_error( const char *err, ... ) __attribute__((noreturn,format(printf,1,2))); 66 static void fatal_error( const char *err, ... ) function 96 if (!(res = malloc( size ))) fatal_error( "virtual memory exhausted\n"); 264 fatal_error( "cannot determine your user name, set the USER environment variable\n" ); 275 fatal_error( "invalid directory %s in WINEPREFIX: not an absolute path\n", prefix ); 284 if (!home) fatal_error( "could not determine your home directory\n" ); 285 if (home[0] != '/') fatal_error( "your home directory %s is not an absolute path\n", home ); 296 if (!S_ISDIR(st.st_mode)) fatal_error( "%s is not a directory\n", config_dir ); 298 if (st.st_uid != getuid()) fatal_error( "%s is not owned by you\n", config_dir ); 428 if (errno != ENOENT) fatal_error( "canno [all...] |
Completed in 2131 milliseconds