Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 173319 | Differences between
and this patch

Collapse All | Expand All

(-)src-native/collection/framework/RASharedMemory/RASharedMemory.def (+1 lines)
Lines 47-52 Link Here
47
    Java_org_eclipse_hyades_collection_framework_channel_DataChannelImpl_hc_1flushDCBufferToStream	@44
47
    Java_org_eclipse_hyades_collection_framework_channel_DataChannelImpl_hc_1flushDCBufferToStream	@44
48
    ra_getShmAttachCount            @45
48
    ra_getShmAttachCount            @45
49
    ra_setShmAttachCount            @46
49
    ra_setShmAttachCount            @46
50
    ra_stopFlusher            		@47
50
    
51
    
51
	
52
	
52
53
(-)src-native/collection/framework/RASharedMemory/RASharedMemory.h (+1 lines)
Lines 81-85 Link Here
81
81
82
RASHMEXTERN int ra_getShmAttachCount(ra_shm_handle_t *handle);
82
RASHMEXTERN int ra_getShmAttachCount(ra_shm_handle_t *handle);
83
RASHMEXTERN ra_shm_err_t ra_setShmAttachCount(ra_shm_handle_t *handle, int count);
83
RASHMEXTERN ra_shm_err_t ra_setShmAttachCount(ra_shm_handle_t *handle, int count);
84
RASHMEXTERN ra_shm_err_t ra_stopFlusher(ra_shm_handle_t *handle);
84
85
85
#endif
86
#endif
(-)src-native/collection/framework/RASharedMemory/ossramboflush.c (-1 / +11 lines)
Lines 2977-2980 Link Here
2977
   return (ra_shm_err_t)shmerr;
2977
   return (ra_shm_err_t)shmerr;
2978
}
2978
}
2979
/* 175248 end */
2979
/* 175248 end */
2980
 
2980
2981
ra_shm_err_t ra_stopFlusher(ra_shm_handle_t *handle) {
2982
   OSSErr shmerr;
2983
2984
   if (handle != NULL) 
2985
      shmerr = ossRamboStopFlusher((OSSRambo *)handle);
2986
   else
2987
      shmerr = OSS_OK;
2988
2989
   return (ra_shm_err_t) shmerr;
2990
}
(-)src-native/collection/framework/RASharedMemory/ossramboflush.cpp (-1 / +12 lines)
Lines 3001-3004 Link Here
3001
   return (ra_shm_err_t)shmerr;
3001
   return (ra_shm_err_t)shmerr;
3002
}
3002
}
3003
/* 175248 end */
3003
/* 175248 end */
3004
 
3004
  
3005
OSSErr ra_stopFlusher(OSSRambo *handle) {
3006
   OSSErr shmerr;
3007
3008
   if (handle != NULL) 
3009
      shmerr = ossRamboStopFlusher(handle);
3010
   else
3011
      shmerr = OSS_OK;
3012
3013
   return shmerr;
3014
}
3015
 

Return to bug 173319