How to Set up Shared Memory in Your Linux and MacOS Programs. (shmget, shmat, shmdt, shmctl, ftok)

Поділитися
Вставка
  • Опубліковано 3 гру 2024

КОМЕНТАРІ • 107

  • @funkykong9001
    @funkykong9001 4 роки тому +4

    I'm loving the new layout and graphic highlighting! This was much easier to follow.

    • @JacobSorber
      @JacobSorber  4 роки тому +1

      Glad you like it! Always trying make things a bit easier.

  • @Jose-tw9bl
    @Jose-tw9bl Рік тому +1

    I find your videos incredibly well explained. The drawings and explanations in the begining really help before getting to see actual code.

  • @mihirluthra7762
    @mihirluthra7762 4 роки тому +7

    Great video, would really like to understand semaphores in next.

    • @JacobSorber
      @JacobSorber  4 роки тому +2

      Thanks. I'm not 100% when the semaphore video will come out yet, but it's coming.

  • @しげお-i1l
    @しげお-i1l 4 роки тому +4

    Thanks for the awesome content, very well produced.
    I'm literally binge watching the entire channel haha

  • @JoeKenyon
    @JoeKenyon 4 роки тому +2

    A video on FFT/signal_processing or bluetooth would be cool.

    • @JacobSorber
      @JacobSorber  4 роки тому +1

      Thanks. I'll see what I can do.

  • @KalebeAlves-f7s
    @KalebeAlves-f7s Рік тому +2

    8:16 that shmdt cracked me up.

  • @jojodi
    @jojodi 4 роки тому +12

    Prior to the C89 standard, identifiers had a max length of 6. That's probably a big part of the function names.

    • @JacobSorber
      @JacobSorber  4 роки тому +5

      Good point. I sometimes think I have repressed those memories. :)

    • @obinator9065
      @obinator9065 Місяць тому

      @@JacobSorber So that's an example of where shared memory shouldn't be used!

  • @LDS-Hellgineer
    @LDS-Hellgineer Рік тому

    This video saved my soul in a current project.
    Thank you very much, keep it up!!
    greetings from Austria

  • @contactdi8426
    @contactdi8426 2 роки тому

    That's an awesome explanation! You made is so much easier to understand this :) Thanks a lot Jacob

  • @jon-sw5yw
    @jon-sw5yw 4 роки тому

    wow I just completed my assignment a week ago involving concurrency and shared memory... and you just now post this haha I could've used mmap but I preferred using shmget and shmat for my assignment.

    • @JacobSorber
      @JacobSorber  4 роки тому

      Nice. I hope it worked out ok, even though I was slow.

    • @jon-sw5yw
      @jon-sw5yw 4 роки тому

      @@JacobSorber No worries it worked out perfectly fine! I actually plan to help my peers by referencing your videos! Keep up the great work!

  • @darshansrinivas6883
    @darshansrinivas6883 2 роки тому

    Thank you for the explaination !!

  • @nickhyland9497
    @nickhyland9497 3 роки тому +1

    Pronunciation of “shm” functions is what’s made this video

  • @ChristopherBruns-o7o
    @ChristopherBruns-o7o 3 місяці тому

    Also a snapshot of Make file in key moments would be amazing!

  • @ravisinnarkar9706
    @ravisinnarkar9706 4 роки тому

    Hi jacob .
    Great video, would really like to learn about epoll in next video

  • @samikshahanchate3280
    @samikshahanchate3280 4 роки тому

    I just wanna say..thank you..thank you so much..this is so helpful

    • @JacobSorber
      @JacobSorber  4 роки тому

      You're welcome. Glad I could help.

  • @artemiocabrillosjr.244
    @artemiocabrillosjr.244 4 роки тому +1

    Hi Jacob,
    Good job in making these topics more simplier.
    I am a computer science instructor just like you and I highly recommend your videos to my students.
    Keep it up!

    • @JacobSorber
      @JacobSorber  4 роки тому +1

      Thanks, Artemio. I appreciate the support. Let me know if there are topics that you think your students would specifically benefit from.

    • @rajendrasinghnegi1764
      @rajendrasinghnegi1764 Рік тому

      ​@@JacobSorbermake a full c language course videos from beginning to advance level

  • @randomscribblings
    @randomscribblings 2 роки тому +1

    Maybe I'm an old UN*X hand, but the promise of unified VM/filesystem is that two programs mmaping the _same_ file effectively shared memory.

    • @randomscribblings
      @randomscribblings 2 роки тому

      In a way, I would call this "how to play with SYSV shared memory"

  • @jackeown
    @jackeown 4 роки тому +15

    Just an idea of something I'd love to see: make a video about sharing memory but between Python and C.

    • @JacobSorber
      @JacobSorber  4 роки тому +10

      That would be fun. It would probably be basically the same mechanism, with some sort of python bindings on it. I'll see what I can do.

    • @patricknagel4649
      @patricknagel4649 4 роки тому

      @@JacobSorber Thanks for the great videos. Does one already exist that covers the request of @John McKeown?

    • @sam777flynn3
      @sam777flynn3 3 місяці тому

      Mr Sorber,
      You are really doing a great job ❕👍🏻
      Thanks You 🙏🏻

  • @10e999
    @10e999 4 роки тому +1

    Great video Jacob.
    To continue in the same subject, I'd like to see some example where share memory is useful.
    Also, are multi process queue implemented with shared memory ?

  • @rakeshtm2750
    @rakeshtm2750 4 роки тому

    Great knowledge sharing. 😄

  • @ORagnar
    @ORagnar 3 роки тому

    That was excellent!

  • @halavich9672
    @halavich9672 4 роки тому

    Outstanding!

  • @belesiu
    @belesiu 3 роки тому +3

    Is shared memory actually faster than cached disk I/O? Cached I/O, especially if it's memory inside the L1 or L2 cache, seems to be as fast as it gets, right?

  • @randomman5280
    @randomman5280 4 роки тому

    Very useful. Thanks

  • @parker7721
    @parker7721 3 місяці тому

    Loved the video! But I feel there's so much to explain here that a video might not always be enough, so for those seeking for more resources to understand shared memory (or system v ipc) like me, check the "Linux programming interface" book. Chapter are self contained so there's no need for reading the entire book if you have some prior knowledge.

  • @rcmarco3281
    @rcmarco3281 4 роки тому

    way better than my Chinese tutor

  • @jscorpio1987
    @jscorpio1987 4 роки тому

    This video can still be helpful for Windows users who use WSL.

    • @JacobSorber
      @JacobSorber  4 роки тому

      Thanks for pointing that out. I haven't spent much time with WSL, so I'm often hesitant to make claims about what it does and doesn't support.

  • @dkkogmaw1311
    @dkkogmaw1311 3 місяці тому

    Also a posix approach aka with shm_open etc would be cool

  • @johanronkko4494
    @johanronkko4494 4 роки тому +1

    Hi! Love your videos. I would love a video of how to setup a testing environment for C. Is there a testing library for C and how do I set it up? I've heard that some people use C++'s Boost library to test their C code, but I'm not sure if that's the way to go...

  • @shrek1412
    @shrek1412 4 роки тому +1

    Hi Jacob,
    For ftok system call, the man page written "Today, proj_id is an int, but still only 8 bits are used. Typical
    usage has an ASCII character proj_id, that is why the behavior is said to be undefined when proj_id is zero", but in the example you put the 0 there, I tried several alternatives, it seems fine with 0 or nonzero. Do you know why? Thank you

  • @fisyr
    @fisyr 3 роки тому +2

    This is definitely very interesting, but how does one prevent memory leaks in case the program crashes? Does the linux kernel know how to free memory if none of the programs that interacted with it are running or does that block of memory stay inaccessible until reboot?

    • @JacobSorber
      @JacobSorber  3 роки тому +2

      You're right. This can get a bit tricky. The memory needs to be explicitly removed with shmctl, so if the program dies, you will have a leak unless you have another process that can clean things up. Depending on the application, it is often possible for one of the involved processes to detect that a process crashed, and make sure that appropriate cleanup happens.

  • @oscarchivas900
    @oscarchivas900 3 роки тому

    Hi Jacob. Thanks for the content. Would this same concept work to share memory between docker containers?

  • @michimarz
    @michimarz 4 роки тому

    You are the best teacher! Do you actually prefer using VS Code instead of vim, or is it just for those lessons?

    • @JacobSorber
      @JacobSorber  4 роки тому +3

      Vim and I have a complicated relationship. Still trying to figure out exactly how to define the relationship. Let's just say I like both for different reasons.

    • @abdullahbinjahed6900
      @abdullahbinjahed6900 3 роки тому

      @@JacobSorber lol

  • @hossein_haeri
    @hossein_haeri 2 роки тому

    In the future, you may want to use a De-Esser on your audio file.

  • @hasanalattar9561
    @hasanalattar9561 3 роки тому

    hmmmm, @7:33 are you comparing result to casted char * of (-1) ?

    • @hasanalattar9561
      @hasanalattar9561 3 роки тому

      shouldnt it be: if (*result == IPC_RESULT_ERROR) ? ..

    • @Explosion-rd2zc
      @Explosion-rd2zc Місяць тому

      @@hasanalattar9561lol this is 3 years late, but pointers are usually unsigned numbers, so he can’t compare -1 directly.

  • @monzurulislam3860
    @monzurulislam3860 4 роки тому

    Hi Jacob, thanks for the Awsome tutorial. I have a question about the file that we associate with shared memory. If this file(name) is one of the process (executable file) itself, will that may cause any issues??

  • @rainfallen1064
    @rainfallen1064 2 роки тому

    What’s the difference of using those methods versus using fopen(), and writing and reading from a regular file?

  • @marcello4258
    @marcello4258 3 роки тому +1

    great as always.. but instead of saying unix based you might consider the term POSIX :) ..may linux folks might argue otherwise :P

  • @kathiravankathir3089
    @kathiravankathir3089 4 роки тому

    awesome, !!! could you please post a video about how to use semaphores in thread synchronization,,!

    • @JacobSorber
      @JacobSorber  4 роки тому +1

      That's the plan. Not sure when it will come out. But, it's coming.

  • @awaisansari3430
    @awaisansari3430 4 роки тому

    What is the logic behind separating the creation of a shared memory segment and getting a pointer to that memory segment?

  • @florianunterfrauner2041
    @florianunterfrauner2041 Рік тому

    Can a bool function return NULL in c? 9:08 (line 52)

  • @natiiim6336
    @natiiim6336 3 роки тому +1

    in my operative system course they call this 'message queues' and for me, it's so difficult to grasp. They ask to solve problems with threads synchronization first with semaphores and then do the same but with messsage queues.... using this like blocking access tools! AAAAH

  • @maverick7615
    @maverick7615 3 роки тому

    It may sound dumb but if we are not using a common file as a means of sharing memory between processes, why do we need to specify a correct pathname of a file that must exist on disk?

  • @gregoryfenn1462
    @gregoryfenn1462 2 роки тому

    How do you use shared memory on bare-metal applications (e.g. on an ARM Cortex-A15 core)?

  • @Ty1er
    @Ty1er 3 роки тому

    thanks a lot.

    • @JacobSorber
      @JacobSorber  3 роки тому

      You're welcome! Glad you enjoyed it.

  • @ramanujaamit
    @ramanujaamit Рік тому

    In destroy memory block function you wrote get_shared_block(filename,0);
    Shouldn't it be get_shared_block(filename,BLOCK_SIZE);
    Am I wrong?

  • @fennexagent8584
    @fennexagent8584 4 роки тому

    however this doesn't work from a sandboxed app on mac (shmget gives "operation not permitted").

  • @pierce8308
    @pierce8308 3 роки тому

    It just doesnt feel like in the spirit of "Shared memory". Like all this in effect is doing is allowing shared access of a file that MUST exist on a disk. Although I rewatched the video and the part where you describe that I must not confuse them with mmaping content of a file but from what I get is shmget() is basically doing the same thing as mmap() but guaranteeing that contents of file are not changed.
    Shared memory in essence or what I would normally expect is one process being the host of the memory and other just have access to it like it normally would. For example the earlier tutorials about shared memory for parent-child fit the definition of what is expected. But I think in this shmget method we are introducing uncessary mediators like the file that must access on the disk, and then the particiapting process would intearct with it like they would with a file (but without changing its contents). Seems like a very old and inconvineint shared memory api, because in theory, existence of a mediator (like a file) shouldnt be involved at all during shared memory. It should just work the same as they were in the parent-child scenario
    I would love to hear your thoughts on it and if i said something stupid.

  • @dduartez99
    @dduartez99 4 роки тому

    So this is a implementation via the System V standard/mechanisms, right? POSIX way should be thru mmap and shm_open?

    • @JacobSorber
      @JacobSorber  4 роки тому +1

      Yep. I have a few videos on mmap. Probably need another video on shm_open, though.

  • @funhuninjastudio
    @funhuninjastudio 4 роки тому

    Can you make videos for remaking the functions of the standard C libraries. Like making setjmp,longjmp,malloc,free,etc.

    • @JacobSorber
      @JacobSorber  4 роки тому

      Yeah, probably. I'll add that to the list. thanks.

  • @goksanisil9107
    @goksanisil9107 3 роки тому

    What is the idea behind using a FILENAME and ftok to generate a key for the shmget? Why not hardcode a number that both reader and writer agree on?

    • @smrtfasizmu6161
      @smrtfasizmu6161 2 роки тому

      I coded along while watching the video and I just wrote
      #define SEMAPHOR_PRODUCER "seemaphor producer"
      And did the same thing for semaphor consumer as well.

  • @zxuiji
    @zxuiji 2 роки тому +1

    I'm guessing they were supposed to be pronounced "shared get", "shared ctrl" etc

  • @nagesha5539
    @nagesha5539 2 роки тому

    Ok , but how to implement that shared memory functions (shmget()) without using existing header files, I mean implement that header files by your own sir

  • @jaydenritchie1992
    @jaydenritchie1992 5 місяців тому

    imagine if you could share memory in the kernal and have daul or more internet connections, one std ethernet and this hotspot at the same time and you could direct your packets rx tx, i wonder what would happen if i could power the kernal down and still have windows running and then make a system image

  • @productiveprogrammer4060
    @productiveprogrammer4060 4 роки тому

    Can you plz make a video series in tool chain of gcc or one video on elf file format?

    • @JacobSorber
      @JacobSorber  4 роки тому

      What aspects of the toolchain are you most interested in? There are a lot of pieces in there.

    • @productiveprogrammer4060
      @productiveprogrammer4060 4 роки тому

      tools that help us to find memory faults like Coredump

    • @productiveprogrammer4060
      @productiveprogrammer4060 4 роки тому

      @@JacobSorber Can you also make a video on Program execution sequence , what actually happens when we enter ./a.out or (run any executable file)internally in O.S

  • @flanker53
    @flanker53 Рік тому

    Will this work in android ndk ?

  • @60hit99
    @60hit99 4 роки тому

    What you mean by associating an address with filename?

    • @JacobSorber
      @JacobSorber  4 роки тому

      I mean that the block of shared memory is associated with a filename. So, if a process wants to find the block of memory, it looks it up using the filename. It's simply the mechanism for finding the block. There is no relationship between the shared memory and the contents of the file.

  • @obeid_s
    @obeid_s 2 роки тому

    i came from Java , No unsigned byte , No accessing Shared Memory,
    Going to C++.
    Thank you.

  • @rafalmichalski4893
    @rafalmichalski4893 4 роки тому

    Hello Jacob - great talk !. Could you make some content about Makefiles ?

    • @JacobSorber
      @JacobSorber  4 роки тому

      Thanks. I already have some. What aspects of makefiles would you like to see more about?

    • @rafalmichalski4893
      @rafalmichalski4893 4 роки тому

      Hello Jacob, due to Makefiles I think following topics to consider:
      - %.c : %.o notations and alternatives if any
      - some defaults rules to write makefile as short as possible with some variables describing comiler, compile/linkage flags
      - how to mix C and C++ build in makefile
      - considering CMake to generate makefiles
      - imvoking one makefile from another if possible

  • @prshntpnd00
    @prshntpnd00 4 роки тому

    I can see OBJS=shared_memory.o but you don't have any shared_memory.o .. so this should give error no such file or directory

    • @prshntpnd00
      @prshntpnd00 4 роки тому

      Like if I decode it : I am writing filename different .small
      GCC -g -wall -c write.c shared_memory.o -o write.o
      GCC:error: shared_memory.o: no such file or directory
      Consider write.c as writeshmem.c

  • @ciph3r836
    @ciph3r836 4 роки тому

    I use /tmp/file as a shared mem

  • @j_mkg
    @j_mkg 3 роки тому

    very difficult format for compiling as I dont know how to break down your method to compile alternatively - will check out your compile video **make: *** No rule to make target 'writer.elf', needed by 'all'. Stop.**

  • @ciph3r836
    @ciph3r836 4 роки тому

    How to detect sin wave in a wav audio file

    • @JacobSorber
      @JacobSorber  4 роки тому

      Meaning, how to detect a particular frequency, additive noise (sine wave added on top of other signal), or how to detect whether the wave file is a single tone (sine wave)?

    • @ciph3r836
      @ciph3r836 4 роки тому

      @@JacobSorber i am trying detect certain pattern . The sound pattern is a sin wave whose length is 0.01 seconds . The sound wave starts with a maximum amplitude but decreases gradually giving it a click sound . When i view the wav file in audacity I can clearly see the two spikes but when i read that file in to a numpy array things get messy . Tried finding the rms valve of 0.01 seconds of audio at a time . I thought I will get a abnormally large rms valve and i get that but i get multiple large rms value in a wav file with just 1 click

    • @ciph3r836
      @ciph3r836 4 роки тому

      @@JacobSorber the sin wave is played by speaker and my mic records that so the sin wave is with some noice lke cpu fan,ceiling fan noise or tv noise

    • @JacobSorber
      @JacobSorber  4 роки тому

      @@ciph3r836 One option would be to compute an FFT of your audio signal, and look for a spike at the expected frequency.

    • @ciph3r836
      @ciph3r836 4 роки тому

      @@JacobSorber sir i just started doing this just minutes earlier. Fft seems to be promising

  • @yassine-sa
    @yassine-sa Рік тому

    shmdt, Shared Memory DeTach? duh?

  • @Nick-lx4fo
    @Nick-lx4fo 3 роки тому +2

    What tfok!!??

  • @tomasruzicka9835
    @tomasruzicka9835 10 днів тому

    you can pronounce it shmem-at, shmem-get, shmem-...