From 25158b2557d4e6c6d9be8c80c582abb7561e59c4 Mon Sep 17 00:00:00 2001 From: jaketothepast Date: Sat, 18 May 2019 09:12:50 -0400 Subject: [PATCH] Removed bad header --- content/post/shared-memory.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/post/shared-memory.md b/content/post/shared-memory.md index 81b66bd..891e85c 100644 --- a/content/post/shared-memory.md +++ b/content/post/shared-memory.md @@ -10,8 +10,6 @@ Shared memory is one of the many choices available to us for IPC in C. The progr and data structures to 0. Once that step is complete, any process can attach to it and use it in meaningful ways! The only danger of this approach is obviously it is on the application programmer to synchronize the data stored in that segment, but otherwise it is very fast. -## Setting up our shared memory. - ## Prerequisites - Forking For our shared memory to work, and be meaningful, we must set up a child process that we can use to access the memory in parallel with the parent. To do this, we will use fork. Fork is