make multiprocessing
This commit is contained in:
6
Makefile
6
Makefile
@ -25,10 +25,12 @@ VPATH := $(SRC_DIR) $(wildcard $(LIB_DIR)/*)
|
|||||||
|
|
||||||
.DEFAULT_GOAL := all
|
.DEFAULT_GOAL := all
|
||||||
|
|
||||||
.PHONY: all clean cleanall
|
.PHONY: all multi clean cleanall
|
||||||
|
|
||||||
|
all:
|
||||||
|
@$(MAKE) -s -j multi
|
||||||
|
|
||||||
all: $(BUILD_DIR)/server $(BUILD_DIR)/client
|
multi: $(BUILD_DIR)/server $(BUILD_DIR)/client
|
||||||
@echo "Compiled!"
|
@echo "Compiled!"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -197,7 +197,7 @@ int openFile(const char* pathname, int flags) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if(isOpen(pathname, flags)) { // already open
|
if(isOpen(pathname, flags)) { // already open
|
||||||
return 0;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// invio al server la stringa "openFile|$(pathname)|$(flags)"
|
// invio al server la stringa "openFile|$(pathname)|$(flags)"
|
||||||
|
|||||||
Reference in New Issue
Block a user