Show
Ignore:
Timestamp:
07/25/12 11:24:42 (11 months ago)
Author:
denton
Message:

Changed name of the "user_cache_u" union to ucache_u for naming consistency.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/stable/src/client/usrint/ucache.c

    r9266 r9399  
    2626 
    2727/* Global pointers to data in shared mem. Pointers set in ucache_initialize */ 
    28 union user_cache_u *ucache = 0; 
     28union ucache_u *ucache = 0; 
    2929struct ucache_aux_s *ucache_aux = 0; /* All locks and stats stored here */ 
    3030 
     
    178178        return -1; 
    179179    } 
    180     ucache = (union user_cache_u *)shmat(ucache_shmid, NULL, 0); 
     180    ucache = (union ucache_u *)shmat(ucache_shmid, NULL, 0); 
    181181    if((long int)ucache == -1)  
    182182    { 
     
    531531        return -1; 
    532532    } 
    533     ucache = (union user_cache_u *)shmat(ucache_shmid, NULL, 0); 
     533    ucache = (union ucache_u *)shmat(ucache_shmid, NULL, 0); 
    534534    if((long int)ucache == -1) 
    535535    {