Unix and Linux Discussions Tagged with thread |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
283,177 |
Shell Programming and Scripting |
|
|
|
1 |
11,711 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
49,692 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
5 |
10,975 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
25 |
23,575 |
Web Development |
|
|
|
0 |
3,063 |
What is on Your Mind? |
|
|
|
1 |
11,737 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
6 |
253,490 |
Emergency UNIX and Linux Support |
|
|
|
5 |
10,392 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
1 |
2,803 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
2 |
2,535 |
Shell Programming and Scripting |
|
|
|
1 |
3,431 |
Programming |
|
|
|
5 |
2,675 |
Shell Programming and Scripting |
|
|
|
5 |
3,762 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
4,249 |
Programming |
|
|
|
2 |
4,099 |
Programming |
|
|
|
1 |
10,198 |
Programming |
|
|
|
14 |
13,503 |
Programming |
|
|
|
3 |
2,724 |
Shell Programming and Scripting |
|
|
|
8 |
7,619 |
Programming |
|
|
|
4 |
13,902 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
5,857 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
4,605 |
HP-UX |
|
|
|
0 |
11,229 |
Programming |
|
|
|
1 |
5,994 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
3 |
12,285 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,796 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
9,753 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
2 |
6,391 |
SCO |
|
|
|
1 |
4,343 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
3 |
4,840 |
Programming |
|
|
|
1 |
3,651 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
4,677 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
1,976 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
1 |
5,743 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
0 |
3,051 |
UNIX and Linux RSS News |
|
|
|
1 |
3,587 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
3,697 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
4,546 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
2,697 |
Post Here to Contact Site Administrators and Moderators |
pthread_getsequence_np(3) Library Functions Manual pthread_getsequence_np(3)
NAME
pthread_getsequence_np - Obtains the unique identifier for the specified thread.
LIBRARY
DECthreads POSIX 1003.1c Library (libpthread.so)
SYNOPSIS
#include <pthread.h>
unsigned long pthread_getsequence_np(
pthread_t thread);
STANDARDS
None
PARAMETERS
Thread object whose sequence number is to be obtained.
DESCRIPTION
This routine obtains and returns the DECthreads thread sequence number for the thread identified by the thread object specified in the
thread argument.
The thread sequence number provides a unique identifier for each existing thread. A thread's thread sequence number is never reused while
the thread exists, but can be reused after the thread terminates. The debugger interfaces use this sequence number to identify each thread
in commands and in display output.
The result of calling this routine is undefined if the thread argument does not specify a valid thread object.
RETURN VALUES
No errors are returned. This routine returns the DECthreads thread sequence number for the thread identified by the thread object speci-
fied in the thread argument. The result of calling this routine is undefined if the thread argument does not specify a valid thread.
ERRORS
None
RELATED INFORMATION
Functions: pthread_create(3), pthread_self(3)
Manuals: Guide to DECthreads and Programmer's Guide
delim off
pthread_getsequence_np(3)