RCCE_shflush.3 674 B

1234567891011121314151617181920212223242526272829303132
  1. .TH RCCE 3 "September 2010" "RCCE MANPAGE" "RCCE Library"
  2. .SH NAME
  3. RCCE_shflush \- ensures that the data in shared memory can be read and written
  4. .SH SYNOPSIS
  5. .B #include <rcce.h>
  6. .sp
  7. .BI "void RCCE_shflush();"
  8. .SH DESCRIPTION
  9. .BR RCCE_shflush()
  10. ensures that the data in shared memory can be read and written. For example, if
  11. one core writes into shared memory, another core would issue a RCCE_shflush()
  12. before reading from or writing to that shared memory. This ensures that the reading
  13. core sees the updated contents.
  14. .SH "RETURN VALUE"
  15. None
  16. .SH ERRORS
  17. Look in
  18. .BR rcce.h
  19. for additional error codes.
  20. .SH "SEE ALSO"
  21. rcce.h(5)
  22. .SH EXAMPLE
  23. .PP
  24. To be supplied.