Jun 27, 2002 #1 fabien Technical User Sep 25, 2001 299 AU Hi! How can data be loaded into shared memory, are there special functions to use? Thanks!
Jun 27, 2002 #2 brudnakm Programmer Jun 26, 2001 79 US fabien, Use shmget() to create a shared memory segment. Use shmat() to get a pointer to the shared memory segment. The details are in the man pages. Mark Upvote 0 Downvote
fabien, Use shmget() to create a shared memory segment. Use shmat() to get a pointer to the shared memory segment. The details are in the man pages. Mark
Jun 28, 2002 Thread starter #3 fabien Technical User Sep 25, 2001 299 AU Thanks a lot! Do you know where I can find simple examples somewhere on the net? Upvote 0 Downvote
Jun 28, 2002 #4 Guest_imported New member Jan 1, 1970 0 try this, but don't know why today the link doesn't work for me, or use man http://www.cs.cf.ac.uk/Dave/C/CE.html Upvote 0 Downvote
try this, but don't know why today the link doesn't work for me, or use man http://www.cs.cf.ac.uk/Dave/C/CE.html
Jun 28, 2002 Thread starter #5 fabien Technical User Sep 25, 2001 299 AU thanks it is a great link! Upvote 0 Downvote