mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 10:05:58 +01:00
4b4971c06f
* framebuffer: avoid gluint overflow GLuint was being initialized to -1 and rolling over to unsigned int max, its defined behaviour but very unnecessery. add a bool and use it for checking if allocated or not. * opengl: avoid gluint rollover -1 rolls over to unsigned int max, use 0xFF instead. * core: big uint64_t to int type conversion there were a few uint64_t to int implicit conversions overflowing int and causing UB, make all monitor/workspaces/windows use the new typedefs. also fix the various related 64 to 32 implicit conversions going around found with -Wshorten-64-to-32
30 lines
630 B
C++
30 lines
630 B
C++
#include "signal-safe.hpp"
|
|
|
|
#ifndef __GLIBC__
|
|
#include <signal.h>
|
|
#endif
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
extern char** environ;
|
|
|
|
char const* sig_getenv(char const* name) {
|
|
size_t len = strlen(name);
|
|
for (char** var = environ; *var != NULL; var++) {
|
|
if (strncmp(*var, name, len) == 0 && (*var)[len] == '=') {
|
|
return (*var) + len + 1;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
char const* sig_strsignal(int sig) {
|
|
#ifdef __GLIBC__
|
|
return sigabbrev_np(sig);
|
|
#elif defined(__DragonFly__) || defined(__FreeBSD__)
|
|
return sys_signame[sig];
|
|
#else
|
|
return "unknown";
|
|
#endif
|
|
}
|