Changeset 9399 for branches/stable/src/client/usrint/ucache.c
- Timestamp:
- 07/25/12 11:24:42 (11 months ago)
- Files:
-
- 1 modified
-
branches/stable/src/client/usrint/ucache.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/src/client/usrint/ucache.c
r9266 r9399 26 26 27 27 /* Global pointers to data in shared mem. Pointers set in ucache_initialize */ 28 union u ser_cache_u *ucache = 0;28 union ucache_u *ucache = 0; 29 29 struct ucache_aux_s *ucache_aux = 0; /* All locks and stats stored here */ 30 30 … … 178 178 return -1; 179 179 } 180 ucache = (union u ser_cache_u *)shmat(ucache_shmid, NULL, 0);180 ucache = (union ucache_u *)shmat(ucache_shmid, NULL, 0); 181 181 if((long int)ucache == -1) 182 182 { … … 531 531 return -1; 532 532 } 533 ucache = (union u ser_cache_u *)shmat(ucache_shmid, NULL, 0);533 ucache = (union ucache_u *)shmat(ucache_shmid, NULL, 0); 534 534 if((long int)ucache == -1) 535 535 {
