summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-11-08 01:46:07 +0200
committerAlon Levy <alevy@redhat.com>2010-11-08 01:46:57 +0200
commit1395d9178db642386e22650dbc4687e0138b671a (patch)
tree60d6caf4a3c81af796b87eaa43964397b95479b3
parent1e93b36f54b407328ecc9913060bb550b4fc1e0a (diff)
downloadspice-1395d9178db642386e22650dbc4687e0138b671a.tar.gz
spice-1395d9178db642386e22650dbc4687e0138b671a.tar.xz
spice-1395d9178db642386e22650dbc4687e0138b671a.zip
server/red_worker: s/red_pipe_get/red_channel_pipe_get/
-rw-r--r--server/red_worker.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/red_worker.c b/server/red_worker.c
index 6950d401..97ea5e7d 100644
--- a/server/red_worker.c
+++ b/server/red_worker.c
@@ -8308,7 +8308,7 @@ static void red_send_surface_destroy(DisplayChannel *display, uint32_t surface_i
red_channel_begin_send_message(channel);
}
-static inline PipeItem *red_pipe_get(RedChannel *channel)
+static inline PipeItem *red_channel_pipe_get(RedChannel *channel)
{
PipeItem *item;
if (!channel || channel->send_data.blocked ||
@@ -8423,7 +8423,7 @@ static void display_channel_push(RedWorker *worker)
{
PipeItem *pipe_item;
- while ((pipe_item = red_pipe_get((RedChannel *)worker->display_channel))) {
+ while ((pipe_item = red_channel_pipe_get((RedChannel *)worker->display_channel))) {
display_channel_send_item((RedChannel *)worker->display_channel, pipe_item);
}
}
@@ -8476,7 +8476,7 @@ static void cursor_channel_push(RedWorker *worker)
{
PipeItem *pipe_item;
- while ((pipe_item = red_pipe_get((RedChannel *)worker->cursor_channel))) {
+ while ((pipe_item = red_channel_pipe_get((RedChannel *)worker->cursor_channel))) {
cursor_channel_send_item((RedChannel *)worker->cursor_channel, pipe_item);
}
}