Changes between Version 34 and Version 35 of kernel_syscalls
- Timestamp:
- Apr 4, 2015, 6:14:05 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
kernel_syscalls
v34 v35 67 67 68 68 === 3) int '''_sys_nic_move'''( unsigned int is_rx, unsigned int channel, void* buffer ) === 69 This function moves one 4 Kbytes container from the kernel chbuf defined by the ''nic_channel'' argument, to an user buffer defined by the ''buffer'' argument. T his blocking function enforces locality and parallelism: it scans the two containers located in the same cluster as the calling task, and returns only when a full container has been found.69 This function moves one 4 Kbytes container from the kernel chbuf defined by the ''nic_channel'' argument, to an user buffer defined by the ''buffer'' argument. To enforce locality, this blocking function returns only when the container located in the same cluster as the calling task is full. 70 70 * '''is_rx''' : boolean (RX transfer if non zero) 71 71 * '''channel''' : RX or TX channel index. … … 185 185 186 186 187