mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-03 13:41:59 -07:00
Fixing format issue
This commit is contained in:
@@ -143,22 +143,22 @@ void CKeybindManager::spawn(std::string args) {
|
||||
Debug::log(LOG, "Executing %s", args.c_str());
|
||||
|
||||
int socket[2];
|
||||
if (pipe(socket) != 0) {
|
||||
Debug::log(LOG, "Unable to create pipe for fork");
|
||||
}
|
||||
if (pipe(socket) != 0) {
|
||||
Debug::log(LOG, "Unable to create pipe for fork");
|
||||
}
|
||||
|
||||
pid_t child ,grandchild;
|
||||
pid_t child, grandchild;
|
||||
child = fork();
|
||||
if (child<0){
|
||||
if (child < 0) {
|
||||
close(socket[0]);
|
||||
close(socket[1]);
|
||||
Debug::log(LOG, "Fail to create the first fork");
|
||||
return;
|
||||
}
|
||||
if (child == 0){
|
||||
if (child == 0) {
|
||||
// run in child
|
||||
grandchild = fork();
|
||||
if (grandchild==0){
|
||||
if (grandchild == 0) {
|
||||
// run in grandchild
|
||||
close(socket[0]);
|
||||
close(socket[1]);
|
||||
@@ -167,22 +167,22 @@ void CKeybindManager::spawn(std::string args) {
|
||||
_exit(0);
|
||||
}
|
||||
close(socket[0]);
|
||||
(void) write(socket[1], &grandchild, sizeof(grandchild));
|
||||
write(socket[1], &grandchild, sizeof(grandchild));
|
||||
close(socket[1]);
|
||||
// exit child
|
||||
_exit(0);
|
||||
}
|
||||
// run in parent
|
||||
close(socket[1]);
|
||||
(void) read(socket[0], &grandchild,sizeof(grandchild));
|
||||
read(socket[0], &grandchild, sizeof(grandchild));
|
||||
close(socket[0]);
|
||||
// clear child and leave child to init
|
||||
waitpid(child, NULL, 0);
|
||||
if (child<0){
|
||||
if (child < 0) {
|
||||
Debug::log(LOG, "Fail to create the second fork");
|
||||
return;
|
||||
}
|
||||
Debug::log(LOG, "Process Created with pid %d",grandchild);
|
||||
Debug::log(LOG, "Process Created with pid %d", grandchild);
|
||||
}
|
||||
|
||||
void CKeybindManager::killActive(std::string args) {
|
||||
|
Reference in New Issue
Block a user