summaryrefslogtreecommitdiff
path: root/cdr
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2016-10-26 22:40:49 -0400
committerCorey Farrell <git@cfware.com>2016-10-27 09:53:55 -0400
commita6e5bae3ef9fe498927e0b5f9318a64c9ff101a9 (patch)
tree5d927549d9c5358161420a4958eefefc9b5b0861 /cdr
parent211a1003e4df38bc2e46d9df54f69f4994ac5b2e (diff)
Remove ASTERISK_REGISTER_FILE.
ASTERISK_REGISTER_FILE no longer has any purpose so this commit removes all traces of it. Previously exported symbols removed: * __ast_register_file * __ast_unregister_file * ast_complete_source_filename This also removes the mtx_prof static variable that was declared when MTX_PROFILE was enabled. This variable was only used in lock.c so it is now initialized in that file only. ASTERISK-26480 #close Change-Id: I1074af07d71f9e159c48ef36631aa432c86f9966
Diffstat (limited to 'cdr')
-rw-r--r--cdr/cdr_adaptive_odbc.c2
-rw-r--r--cdr/cdr_csv.c2
-rw-r--r--cdr/cdr_custom.c2
-rw-r--r--cdr/cdr_manager.c2
-rw-r--r--cdr/cdr_odbc.c2
-rw-r--r--cdr/cdr_pgsql.c2
-rw-r--r--cdr/cdr_radius.c2
-rw-r--r--cdr/cdr_sqlite.c2
-rw-r--r--cdr/cdr_sqlite3_custom.c2
-rw-r--r--cdr/cdr_syslog.c2
-rw-r--r--cdr/cdr_tds.c2
11 files changed, 0 insertions, 22 deletions
diff --git a/cdr/cdr_adaptive_odbc.c b/cdr/cdr_adaptive_odbc.c
index f0bcc0962..b7417ac25 100644
--- a/cdr/cdr_adaptive_odbc.c
+++ b/cdr/cdr_adaptive_odbc.c
@@ -40,8 +40,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include <sys/types.h>
#include <time.h>
diff --git a/cdr/cdr_csv.c b/cdr/cdr_csv.c
index 2877a6b54..5666a3d4e 100644
--- a/cdr/cdr_csv.c
+++ b/cdr/cdr_csv.c
@@ -38,8 +38,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include "asterisk/paths.h" /* use ast_config_AST_LOG_DIR */
#include "asterisk/config.h"
#include "asterisk/channel.h"
diff --git a/cdr/cdr_custom.c b/cdr/cdr_custom.c
index bb63ea0c6..7d8b9d82e 100644
--- a/cdr/cdr_custom.c
+++ b/cdr/cdr_custom.c
@@ -45,8 +45,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include <time.h>
#include "asterisk/paths.h" /* use ast_config_AST_LOG_DIR */
diff --git a/cdr/cdr_manager.c b/cdr/cdr_manager.c
index ef9d63e47..3f0cc6b6d 100644
--- a/cdr/cdr_manager.c
+++ b/cdr/cdr_manager.c
@@ -166,8 +166,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include <time.h>
#include "asterisk/channel.h"
diff --git a/cdr/cdr_odbc.c b/cdr/cdr_odbc.c
index 5fddb7b23..b44bbf52a 100644
--- a/cdr/cdr_odbc.c
+++ b/cdr/cdr_odbc.c
@@ -44,8 +44,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include "asterisk/config.h"
#include "asterisk/channel.h"
#include "asterisk/cdr.h"
diff --git a/cdr/cdr_pgsql.c b/cdr/cdr_pgsql.c
index ea38cc983..cbd9e0558 100644
--- a/cdr/cdr_pgsql.c
+++ b/cdr/cdr_pgsql.c
@@ -49,8 +49,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include <libpq-fe.h>
#include "asterisk/config.h"
diff --git a/cdr/cdr_radius.c b/cdr/cdr_radius.c
index ddde5b890..af434f618 100644
--- a/cdr/cdr_radius.c
+++ b/cdr/cdr_radius.c
@@ -39,8 +39,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#ifdef FREERADIUS_CLIENT
#include <freeradius-client.h>
#else
diff --git a/cdr/cdr_sqlite.c b/cdr/cdr_sqlite.c
index 5a3b9e144..b91296073 100644
--- a/cdr/cdr_sqlite.c
+++ b/cdr/cdr_sqlite.c
@@ -43,8 +43,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include <sqlite.h>
#include "asterisk/channel.h"
diff --git a/cdr/cdr_sqlite3_custom.c b/cdr/cdr_sqlite3_custom.c
index b7f997832..e8d763edd 100644
--- a/cdr/cdr_sqlite3_custom.c
+++ b/cdr/cdr_sqlite3_custom.c
@@ -39,8 +39,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include <sqlite3.h>
#include "asterisk/paths.h" /* use ast_config_AST_LOG_DIR */
diff --git a/cdr/cdr_syslog.c b/cdr/cdr_syslog.c
index 39f115920..bbe265229 100644
--- a/cdr/cdr_syslog.c
+++ b/cdr/cdr_syslog.c
@@ -43,8 +43,6 @@
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include "asterisk/module.h"
#include "asterisk/lock.h"
#include "asterisk/cdr.h"
diff --git a/cdr/cdr_tds.c b/cdr/cdr_tds.c
index 6dabeff83..f3d0628ec 100644
--- a/cdr/cdr_tds.c
+++ b/cdr/cdr_tds.c
@@ -64,8 +64,6 @@ CREATE TABLE [dbo].[cdr] (
#include "asterisk.h"
-ASTERISK_REGISTER_FILE()
-
#include "asterisk/config.h"
#include "asterisk/channel.h"
#include "asterisk/cdr.h"