aboutsummaryrefslogtreecommitdiff
path: root/tools/gator/daemon/Fifo.cpp
diff options
context:
space:
mode:
authorJon Medhurst <tixy@linaro.org>2015-05-11 15:07:45 +0100
committerJon Medhurst <tixy@linaro.org>2015-05-11 15:07:45 +0100
commitb93dcce48cc6182fcf66cb6d72665b10c775f4c3 (patch)
treefb32ef8d494ee1952b99a65f876a9e28da004a1b /tools/gator/daemon/Fifo.cpp
parent715db954c8f2d97a6742ff13be91c99db22135e9 (diff)
parent66de4b5dc66d8a3f0990ad99ab868db4ad267240 (diff)
Merge branch 'lsk-3.10-gator-5.21' into lsk-3.10-gator
Diffstat (limited to 'tools/gator/daemon/Fifo.cpp')
-rw-r--r--tools/gator/daemon/Fifo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gator/daemon/Fifo.cpp b/tools/gator/daemon/Fifo.cpp
index 41275fd287b8..8d3b9ff8d385 100644
--- a/tools/gator/daemon/Fifo.cpp
+++ b/tools/gator/daemon/Fifo.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (C) ARM Limited 2010-2014. All rights reserved.
+ * Copyright (C) ARM Limited 2010-2015. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
@@ -24,12 +24,12 @@ Fifo::Fifo(int singleBufferSize, int bufferSize, sem_t* readerSem) {
mEnd = false;
if (mBuffer == NULL) {
- logg->logError(__FILE__, __LINE__, "failed to allocate %d bytes", bufferSize + singleBufferSize);
+ logg->logError("failed to allocate %d bytes", bufferSize + singleBufferSize);
handleException();
}
if (sem_init(&mWaitForSpaceSem, 0, 0)) {
- logg->logError(__FILE__, __LINE__, "sem_init() failed");
+ logg->logError("sem_init() failed");
handleException();
}
}