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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:57:45+00:00 2026-05-27T01:57:45+00:00

I am compiling this program with gcc from cygwin package on my windows machine

  • 0

I am compiling this program with gcc from cygwin package on my windows machine

#include<stdio.h>
#include<pthread.h>

void* thread_function(void)
{
    printf("hello");
}
int main(int argc,char *argv[])
{
    pthread_t thread_id[argc-1];
    int i;
    int status;
    printf("argc is %d ",argc-1);
    for(i=0;i<argc-1;i++)
    {
        pthread_create (&thread_id[i], NULL , &thread_function, NULL);
    }  

    for(i=0;i<argc-1;i++)
        pthread_join(thread_id[i],NULL);   
}

It compiles and creates a.exe

When I run it in cmd

./a.exe 2 3

The output is

argc is 2 hellohello

Question :

pthread.h and this thread function are related to linux os then why does it work with windows?

  • 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-27T01:57:46+00:00Added an answer on May 27, 2026 at 1:57 am

    Beyond the pthread.h, cygwin is an entire unix-like enviroment, mainly based on gnu utilities, with some solaris stuff too.

    You can compile and use unix software inside the cygwin environment, but you can not distribute your exe file just like that. Every single windows machine would need to have installed and configure a cigwin environment.

    Cygwin apps are not 100% efficient or reliable on windows environment due to OS design differences. Just as windows apps are not 100% reliable or efficient when using wine, although Cygwin apps are compiled natively in windows.

    Other environment/libraries/compilers also provide ways for using posix functions. One of the most successful being Mingw, which provides libraries implemented on top of win32 calls and does not need an extra environment.

    On top of that Cygwin apps must comply with the GPL2 terms, so you must give your source code away with the app when using cygwin compiled binaries, Mingw runtime libraries are officially in the public domain, so you can keep your source code to yourself if you desire.

    http://www.mingw.org/
    http://en.wikipedia.org/wiki/MinGW
    http://en.wikipedia.org/wiki/Cygwin

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

Sidebar

Related Questions

I am compiling this program on Windows, with gcc (MinGW) and GTK+: #include <gtk/gtk.h>
When compiling this program with arm-elf-gcc-4.5 -O3 -march=armv7-a -mthumb -mfpu=neon -mfloat-abi=softfp: #include <arm_neon.h> extern
Recently I tried compiling program something like this with GCC: int f(int i){ if(i<0){
I get an undefined reference to 'typeof'-error compiling and linking this: #include <stdio.h> #include
While compiling a program in Java I got this big WARNING warning: [unchecked] unchecked
I get this message when compiling C++ on gcc 4.3 error: ‘NULL’ was not
I was compiling this program and the compilation went fine. The moment I executed
Here's the test program that is giving me the grief: #include <xmmintrin.h> #include <stdio.h>
I am having some difficulty compiling a C++ program that I've written. This program
Problem Why would compiling a program which has an int main(void) main function differ

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.