Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6823581
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:47:57+00:00 2026-05-26T21:47:57+00:00

I have a strange problem with shared memory. Method shmget returns -1 and errno

  • 0

I have a strange problem with shared memory.

Method shmget returns -1 and errno is set to EEXIST. According to man, it is only possible when both flag IPC_EXCL and IPC_CREAT are provided.

My code:

int main()
{
        int shmid = shmget(0xABCD, MAX_SIZE, IPC_CREAT | 0x660);
        int shmid2 = shmget(0xABCD, MAX_SIZE, IPC_CREAT | 0x660 );
        if(shmid == -1)
        {
                if(errno == EEXIST)
                        perror("Error");
                return -1;
        }
        if(shmid2 == -1)
        {
                if(errno == EEXIST)
                        perror("Error2");
                return -1;
        }
        shmctl(shmid, IPC_RMID, NULL);
        return 0;
}

It compiles with -Wall without warnings, I check with ipcs if the segment is already present (and remove it if needed). The output is Error2: File exists.
It works when I change the second shmget to:

int shmid2 = shmget(0xABCD, MAX_SIZE, 0 );

Quote from man shmget:

EEXIST     IPC_CREAT | IPC_EXCL was specified and the segment exists. 

And one more question: is it true, that mode_flags (i.e. 0x660) are not used when trying to execute shmget?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T21:47:58+00:00Added an answer on May 26, 2026 at 9:47 pm

    Permission modes need to be specified in octal, not hexadecimal. 0x660 (hex) = 03140 (octal). And the IPC_EXCL flag has the octal value 02000 in the Linux ABI — so by using 0x660 instead of 0660 you are accidentally setting IPC_EXCL, which is why you get the error.

    If I change both instances of 0x660 to 0660 in your program and fix the other things that make it not compile (notably, you left out all the headers and the definition of MAX_SIZE) it works as expected.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a strange problem that is only happening in a single location. I
I have strange problem with sharepoint and ajax functionality. We have an UpdatePanel placed
i have strange problem doing reporting: i have numerous clients with different issued invoices.
We have very strange problem, one of our applications is continually querying server by
I have a strange problem with mod_rewrite, the rules that are relevant here are:
I have a strange problem with VS2008. My solution has 8 projects (all c#)
I have a strange problem with lxml when using the deployed version of my
I have a strange problem with some documents on my webpage. My data is
We have a strange problem when implementing sessions with ColdFusion in IE6. After login
I have a strange problem that I could not solve. When I try to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.