Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 155393 Details for
Bug 269838
CDT gdb/mi fails to parse result of gdb cmd "thread info"
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
pthreads test code
pthread-test.c (text/plain), 387 bytes, created by
Marc-André Laperle
on 2010-01-06 00:54:19 EST
(
hide
)
Description:
pthreads test code
Filename:
MIME Type:
Creator:
Marc-André Laperle
Created:
2010-01-06 00:54:19 EST
Size:
387 bytes
patch
obsolete
>#include <pthread.h> >#include <stdlib.h> >#include <stdio.h> > >void *aFunc(void * foo) >{ > while (1) > { > printf("In aFunc()\n"); > } > pthread_exit(NULL); >} > >int main() >{ > pthread_attr_t attr; > pthread_attr_init(&attr); > pthread_t *t_id = (pthread_t *) malloc(sizeof(pthread_t*)); > pthread_create(t_id, &attr, &aFunc, (void *) NULL); > > while (1) > { > printf("In main()\n"); > } > > return 0; >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 269838
:
129741
|
129886
|
151905
|
151906
|
155392
| 155393 |
156477
|
157863
|
157865
|
158135
|
158393
|
158394