Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
Icecast-libshout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-libshout
Commits
703e4341
Commit
703e4341
authored
Mar 05, 2003
by
brendan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some namespace pollution
svn path=/trunk/thread/; revision=4409
parent
9d8784d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/thread/thread.h
src/thread/thread.h
+6
-6
No files found.
src/thread/thread.h
View file @
703e4341
...
...
@@ -26,7 +26,7 @@
/* renamed from thread_t due to conflict on OS X */
typedef
struct
thread_tag
{
typedef
struct
{
/* the local id for the thread, and it's name */
long
thread_id
;
char
*
name
;
...
...
@@ -38,14 +38,14 @@ typedef struct thread_tag {
char
*
file
;
int
line
;
/* is the thread running detached? */
int
detached
;
/* is the thread running detached? */
int
detached
;
/* the system specific thread */
pthread_t
sys_thread
;
}
thread_type
;
typedef
struct
mutex_tag
{
typedef
struct
{
#ifdef DEBUG_MUTEXES
/* the local id and name of the mutex */
long
mutex_id
;
...
...
@@ -64,7 +64,7 @@ typedef struct mutex_tag {
pthread_mutex_t
sys_mutex
;
}
mutex_t
;
typedef
struct
cond_tag
{
typedef
struct
{
#ifdef THREAD_DEBUG
long
cond_id
;
char
*
name
;
...
...
@@ -74,7 +74,7 @@ typedef struct cond_tag {
pthread_cond_t
sys_cond
;
}
cond_t
;
typedef
struct
rwlock_tag
{
typedef
struct
{
#ifdef THREAD_DEBUG
long
rwlock_id
;
char
*
name
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment