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 6150759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:39:47+00:00 2026-05-23T19:39:47+00:00

I need to run two separate processes simultaneously. One is just listening on port

  • 0

I need to run two separate processes simultaneously. One is just listening on port X, and sends data when it receives sth, the second one is doing some other stuff.

Ive tried this:
pthread_t thread1, thread2;
int iret1, iret2;

iret1 = pthread_create( &thread1, NULL, getAddress(), NULL);

iret2 = pthread_create( &thread2, NULL, operate(), (struct IPlist) *IPlist);

In the first one I would like to run get(Address) – the listening and sending part, in the second one I need to run operate() with one arg: *IP list //(struct IPlist *IPlist)

BUT, it shows errors:

warning: passing argument 3 of ‘pthread_create’ makes pointer from integer without a cast
/usr/include/pthread.h:225: note: expected ‘void * (*)(void *)’ but argument is of type int

error: incompatible type for argument 4 of ‘pthread_create’
/usr/include/pthread.h:225: note: expected ‘void * __restrict__’ but argument is of type ‘struct IPlist’

What is wrong here?

I do not really understand the manual, so I am asking here.

Thanks for any help!!

  • 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-23T19:39:48+00:00Added an answer on May 23, 2026 at 7:39 pm

    Use getAddress and operate instead of getAddress() and operate() when calling pthread_create. You have to supply functions instead of their return values.

    You also need to supply your data to these threads through the last argument. It should go like this:

    struct IPlist *IPlist;
    iret1 = pthread_create( &thread1, NULL, getAddress, IPlist);
    iret2 = pthread_create( &thread2, NULL, operate, IPlist);
    

    And your functions should be like:

    void* getAddress(void* data) { struct IPlist *IPlist = data ; /* ... */ }
    void* operate(void* data) { struct IPlist *IPlist = data ; /* ... */ }
    

    If your program keeps stalling, be sure to check out pthread_mutex objects.

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

Sidebar

Related Questions

If say I need to run two separate SQL statements against two separate databases.
Currently I need to run two queries to get both the total amount of
I need to run a JOIN query on a solr index. I've got two
I have two scripts that often need to be run with the same parameter:
I need to select data from two table using a join. This is fairly
I have two php scripts that need to be run as continuous back ground
I've got a Maven project and we want to build two separate jars, one
I've been working on a project that was run as two separate VS projects.
Could someone tell me how I can run Django on two ports simultaneously? The
i need run code that will create a database and populate tables. i am

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.