[svn-commits] seanbright: trunk r240505 - /trunk/res/res_timing_timerfd.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri Jan 15 16:07:34 CST 2010
Author: seanbright
Date: Fri Jan 15 16:07:31 2010
New Revision: 240505
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=240505
Log:
Clarify error message in res_timing_timerfd.
Modified:
trunk/res/res_timing_timerfd.c
Modified: trunk/res/res_timing_timerfd.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_timing_timerfd.c?view=diff&rev=240505&r1=240504&r2=240505
==============================================================================
--- trunk/res/res_timing_timerfd.c (original)
+++ trunk/res/res_timing_timerfd.c Fri Jan 15 16:07:31 2010
@@ -266,7 +266,7 @@
/* Make sure we support the necessary clock type */
if ((fd = timerfd_create(CLOCK_MONOTONIC, 0)) < 0) {
- ast_log(LOG_ERROR, "CLOCK_MONOTONIC not supported. Not loading.\n");
+ ast_log(LOG_ERROR, "timerfd_create() not supported by the kernel. Not loading.\n");
return AST_MODULE_LOAD_DECLINE;
}
More information about the svn-commits
mailing list