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
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
93
Issues
93
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-Server
Commits
65c0bfbb
Commit
65c0bfbb
authored
Dec 29, 2002
by
Michael Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up types after thread type rename earlier.
svn path=/trunk/icecast/; revision=4175
parent
d218eedf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
9 deletions
+10
-9
src/connection.c
src/connection.c
+6
-6
src/format.c
src/format.c
+1
-0
src/fserve.c
src/fserve.c
+1
-1
src/slave.c
src/slave.c
+1
-1
src/stats.c
src/stats.c
+1
-1
No files found.
src/connection.c
View file @
65c0bfbb
...
...
@@ -46,7 +46,7 @@ typedef struct con_queue_tag {
}
con_queue_t
;
typedef
struct
_thread_queue_tag
{
thread_t
*
thread_id
;
thread_t
ype
*
thread_id
;
struct
_thread_queue_tag
*
next
;
}
thread_queue_t
;
...
...
@@ -159,7 +159,7 @@ static void _signal_pool(void)
thread_cond_signal
(
&
_pool_cond
);
}
static
void
_push_thread
(
thread_queue_t
**
queue
,
thread_t
*
thread_id
)
static
void
_push_thread
(
thread_queue_t
**
queue
,
thread_t
ype
*
thread_id
)
{
/* create item */
thread_queue_t
*
item
=
(
thread_queue_t
*
)
malloc
(
sizeof
(
thread_queue_t
));
...
...
@@ -177,9 +177,9 @@ static void _push_thread(thread_queue_t **queue, thread_t *thread_id)
thread_mutex_unlock
(
&
_queue_mutex
);
}
static
thread_t
*
_pop_thread
(
thread_queue_t
**
queue
)
static
thread_t
ype
*
_pop_thread
(
thread_queue_t
**
queue
)
{
thread_t
*
id
;
thread_t
ype
*
id
;
thread_queue_t
*
item
;
thread_mutex_lock
(
&
_queue_mutex
);
...
...
@@ -204,7 +204,7 @@ static void _build_pool(void)
{
ice_config_t
*
config
;
int
i
;
thread_t
*
tid
;
thread_t
ype
*
tid
;
char
buff
[
64
];
config
=
config_get_config
();
...
...
@@ -218,7 +218,7 @@ static void _build_pool(void)
static
void
_destroy_pool
(
void
)
{
thread_t
*
id
;
thread_t
ype
*
id
;
int
i
;
i
=
0
;
...
...
src/format.c
View file @
65c0bfbb
...
...
@@ -16,6 +16,7 @@
#include "format_vorbis.h"
#include "format_mp3.h"
#include "log.h"
#include "logging.h"
#define CATMODULE "format"
...
...
src/fserve.c
View file @
65c0bfbb
...
...
@@ -50,7 +50,7 @@ static avl_tree *pending_tree;
static
avl_tree
*
mimetypes
=
NULL
;
static
cond_t
fserv_cond
;
static
thread_t
*
fserv_thread
;
static
thread_t
ype
*
fserv_thread
;
static
int
run_fserv
;
static
int
fserve_clients
;
static
int
client_tree_changed
=
0
;
...
...
src/slave.c
View file @
65c0bfbb
...
...
@@ -45,7 +45,7 @@
#define CATMODULE "slave"
static
void
*
_slave_thread
(
void
*
arg
);
thread_t
*
_slave_thread_id
;
thread_t
ype
*
_slave_thread_id
;
static
int
_initialized
=
0
;
void
slave_initialize
(
void
)
{
...
...
src/stats.c
View file @
65c0bfbb
...
...
@@ -33,7 +33,7 @@ typedef struct _event_listener_tag
}
event_listener_t
;
int
_stats_running
=
0
;
thread_t
*
_stats_thread_id
;
thread_t
ype
*
_stats_thread_id
;
int
_stats_threads
=
0
;
stats_t
_stats
;
...
...
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