Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 680 results for
pthread
- Page 1
Re: pthread
Programming
Software Development
18 Years Ago
by Ancient Dragon
…=nanodano;278167]Does anyone know where I can find the
pthread
library for Linux? And I don't want any rude… what you are going to get -- google for "man
pthread
" and google will return links to the linux man…
Re: pthread
Programming
Software Development
18 Years Ago
by John A
This pretty much explains it: [quote=http://www.hmug.org/man/3/
pthread
.php]The default system libraries include
pthread
funcitons. No additional libraries or CFLAGS are necessary to use this API.[/quote]
pthread
Programming
Software Development
18 Years Ago
by nanodano
Does anyone know where I can find the
pthread
library for Linux? And I don't want any rude "go google it" responds. I tried that, and all I came up with was one download available for win32.
PThread
Programming
Software Development
15 Years Ago
by DrewS
Hello I need
pthread
.h library in my program in C and i am …
Re: PThread
Programming
Software Development
15 Years Ago
by DrewS
i am just making a console based application to learn this thing. so just explain what to do if i want to use <
pthread
.h> in my application.
Pthread Round Robin Queue in C
Programming
Software Development
13 Years Ago
by Serafel
…is that I'm having a hard time implementing a
Pthread
that consists of a round robin dequeuing 4 arrays …consisting of ints. Followed by a
Pthread
that creates random numbers with which to enqueue them with….h> #include <math.h> #include <
pthread
.h> #define MaxQueueSize 10 #define FALSE 0 #define TRUE…
Pthread support in Vxworks
Programming
Software Development
15 Years Ago
by ankur_
How to support
Pthread
calls like(pthread_create) in Vxworks 5.5 We have include the macro INCLUDE_POSIX_PTHREAD but we are getting linker error while loading. We tried to build the bsp(In tornado 2.2) with the
pthread
after changing the config file but we were not able to build the bsp
Re: pthread example program
Programming
Software Development
14 Years Ago
by mike_2000_17
…/doc/html/thread.html"]Boost.Thread[/URL] instead of
pthread
, it is cross-platform and very nice to use (OOP…
PThread liberary
Programming
Software Development
16 Years Ago
by digi123
…://computing.llnl.gov/tutorials/pthreads/#PassingArguments[/url] [code] #include <
pthread
.h> #include <stdio.h> #define NUM_THREADS 5…
pthread issue with the function to be run
Programming
Software Development
15 Years Ago
by rmlopes
… new to threads in c++, and I must use the
pthread
library. The documentation is easy to understand, but there is…
pthread lock hangs
Programming
Software Development
15 Years Ago
by suman holani
… i686 i686 i386 GNU/Linux I am lil confused as
pthread
is one of the best library, bt its major lock…
pthread example program
Programming
Software Development
14 Years Ago
by spetro3387
….h> #include <sys/time.h> #include <
pthread
.h> #include <unistd.h> #include <string…
Pthread and malloc -Aborted (core dumped)
Programming
Software Development
11 Years Ago
by hassanalisalama
… // problem i get this error Aborted (core dumped) #include <
pthread
.h> #include <stdio.h> #include <stdlib…
Re: Pthread and malloc -Aborted (core dumped)
Programming
Software Development
11 Years Ago
by deceptikon
…;stdio.h> #include <stdlib.h> #include <
pthread
.h> void *fun(void *TX) int main(void) { void…
pthread scheduling policy and CPU percentage
Programming
Software Development
9 Years Ago
by myk45
Hi All, I am trying some experiments with
pthread
scheduling policies. I have a couple of apps and within …
pthread lock and unlock scenarios
Programming
Software Development
8 Years Ago
by clife
… some mutex properties. #include <stdio.h> #include <
pthread
.h> #define MAX 20 int count =0; void *evenfun…
Re: pthread
Programming
Software Development
18 Years Ago
by nanodano
Thank you, I found out our mainframe does have it already.
Re: PThread
Programming
Software Development
15 Years Ago
by WaltP
Read the FAQ in the site you linked. All the information is there.
Re: PThread
Programming
Software Development
15 Years Ago
by jephthah
are you sure you really need to use POSIX threads on Windows? The Windows API has plenty of support for multithreading [url]http://msdn.microsoft.com/en-us/library/ms684841%28VS.85%29.aspx[/url] but if you really do need to use the Win32 port of pthreads, you can get it from here: [url]http://sourceware.org/pthreads-win32/[/url] and a good …
Re: pthread doesn't unpause the second time!
Programming
Software Development
13 Years Ago
by histrungalot
This is working for me. [code]#include <
pthread
.h> #include <stdio.h> #include <signal.…
Re: pthread doesn't unpause the second time!
Programming
Software Development
13 Years Ago
by Mr.UNOwen
…=histrungalot;1779530]This is working for me. [code]#include <
pthread
.h> #include <stdio.h> #include <signal…
Re: Need Help with PThread Scheduling Algorithm
Programming
Software Development
15 Years Ago
by OzY360
…f -r build/Debug rm -f dist/Debug/GNU-MacOSX/
pthread
CLEAN SUCCESSFUL (total time: 109ms) /usr/bin/make -f….d -o build/Debug/GNU-MacOSX/
PThread
.o
PThread
.c
PThread
.c: In function 'main':
PThread
.c:30: error: 'runner' undeclared (first …function it appears in.) make[2]: *** [build/Debug/GNU-MacOSX/
PThread
.o] Error 1 make[1]: *** [.build-conf] Error 2…
Socket and pthread conflict (and Makefile)
Programming
Software Development
14 Years Ago
by Jamesbch
… and the socket of the server. Then it creates a
pthread
(listening thread) with the passed server socket fd. It should… socket because it returns -1. So it seems that the
pthread
doesn't share the main thread socket _only_ when it… and how could it modify the behavior of sockets with
pthread
?! I need some help because I don't have any…
hoe to use pthread in c
Programming
Software Development
15 Years Ago
by drewangel
… to create a thread using pthread_create()? i have never used
pthread
in c. am i supposed to used function pointer? how… am using turbo c++ compiler and including the header file
pthread
.h , but i am getting error and it is not…
Re: hoe to use pthread in c
Programming
Software Development
15 Years Ago
by mitrmkar
It is more than just to get the [URL="http://linux.die.net/man/3/pthread_create"]pthread_create() syntax[/URL] right. How about taking some time and going through [URL="http://www.google.fi/search?q=
pthread
+tutorial&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fi:official&client=firefox-a"]
pthread
tutorial(s)[/URL]
Fibonacci using pthread
Programming
Software Development
14 Years Ago
by Samyx
… writing a c program to run in Unix that uses
pthread
library to create a thread that computes the fibonacci numbers… it. [code=c] /* Operating Systems October 13th, 2010 */ #include <
pthread
.h> #include <stdio.h> int fib; /* this…
Doupt in Pthread in C
Programming
Software Development
13 Years Ago
by karthi_selva
Hi, i am new to
pthread
area. i like to pass the dynamic argument into the thread function. example [CODE]function(void *value) { printf("%s",(char *)value); }[/CODE] here i like to pass dynamic argument when thread is running. so is it possible in
pthread
? please share your ideas...
Is posible sync a global variable with pthread and main while(1)?
Programming
Software Development
12 Years Ago
by ricardo.crudo
… of real code. Is posible synchronize a global variable with
pthread
and main while(1)? On the below code, the printf… in order and delayed of the 1 second. #include <
pthread
.h> #include <stdio.h> pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER…
Re: hoe to use pthread in c
Programming
Software Development
15 Years Ago
by jephthah
… am using turbo c++ compiler and including the header file
pthread
.h , but i am getting error and it is not…
Re: i want to use pthread in visual studio 208.
Programming
Software Development
14 Years Ago
by ekailan
i am try to use
pthread
on c++ visual studio 2008 too , its not working with me the code is written on
pthread
unix and it works 100% i need to run it on windows What should i do ???????
1
2
3
12
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC