Use PRIO_{MIN,MAX} instead of NZERO
Some systems do not define NZERO.  NZERO seems to be an XSI extension
and PRIO_{MIN,MAX} is not specified by POSIX but most relevant systems
define it.
			
			
This commit is contained in:
		
							
								
								
									
										2
									
								
								nice.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								nice.c
									
									
									
									
									
								
							| @@ -37,7 +37,7 @@ main(int argc, char *argv[]) | |||||||
| 	val += getpriority(PRIO_PROCESS, 0); | 	val += getpriority(PRIO_PROCESS, 0); | ||||||
| 	if (errno != 0) | 	if (errno != 0) | ||||||
| 		weprintf("getpriority:"); | 		weprintf("getpriority:"); | ||||||
| 	val = MAX(-NZERO, MIN(val, NZERO - 1)); | 	val = MAX(PRIO_MIN, MIN(val, PRIO_MAX)); | ||||||
| 	if (setpriority(PRIO_PROCESS, 0, val) != 0) | 	if (setpriority(PRIO_PROCESS, 0, val) != 0) | ||||||
| 		weprintf("setpriority:"); | 		weprintf("setpriority:"); | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								renice.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								renice.c
									
									
									
									
									
								
							| @@ -105,7 +105,7 @@ renice(int which, int who, long adj) | |||||||
| 		return 0; | 		return 0; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	adj = MAX(-NZERO, MIN(adj, NZERO - 1)); | 	adj = MAX(PRIO_MIN, MIN(adj, PRIO_MAX)); | ||||||
| 	if (setpriority(which, who, (int)adj) == -1) { | 	if (setpriority(which, who, (int)adj) == -1) { | ||||||
| 		fprintf(stderr, "can't set %d nice level: %s\n", | 		fprintf(stderr, "can't set %d nice level: %s\n", | ||||||
| 		        who, strerror(errno)); | 		        who, strerror(errno)); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user