[SIGAR-68] fix previous rev
This commit is contained in:
		
							parent
							
								
									8bac6a34b1
								
							
						
					
					
						commit
						8e9c0f8b60
					
				@ -453,12 +453,12 @@ int sigar_cpu_list_get(sigar_t *sigar, sigar_cpu_list_t *cpulist)
 | 
			
		||||
            /* merge times of logical processors */
 | 
			
		||||
            ent = sigar_cache_get(chips, chip_id);
 | 
			
		||||
            if (ent->value) {
 | 
			
		||||
                cpu = &cpulist->data[(int)ent->value];
 | 
			
		||||
                cpu = &cpulist->data[(int)ent->value-1];
 | 
			
		||||
            }
 | 
			
		||||
            else {
 | 
			
		||||
                SIGAR_CPU_LIST_GROW(cpulist);
 | 
			
		||||
                ent->value = (void *)(int)cpulist->number;
 | 
			
		||||
                cpu = &cpulist->data[cpulist->number++];
 | 
			
		||||
                ent->value = (void *)(int)cpulist->number;
 | 
			
		||||
                SIGAR_ZERO(cpu);
 | 
			
		||||
 | 
			
		||||
                if (is_debug) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user