diff options
author | unknown <sanja@sun.com> | 2009-01-12 21:27:02 +0200 |
---|---|---|
committer | unknown <sanja@sun.com> | 2009-01-12 21:27:02 +0200 |
commit | 08d61de72082d618811d6f5ae14706deca8b79f1 (patch) | |
tree | ed4df1d74415c1d51d2dea2ef91781086f490e30 /storage/maria/Makefile.am | |
parent | 7dc83c50436a36280e99f9c71006b05452d0b9fe (diff) | |
download | mariadb-git-08d61de72082d618811d6f5ae14706deca8b79f1.tar.gz |
Separated service thread framework to be used for update/delete purge (WL#3067) and group commit (WL#3080).
storage/maria/CMakeLists.txt:
Added files of service thread framework.
storage/maria/Makefile.am:
Added files of service thread framework.
storage/maria/ma_checkpoint.c:
Separated service thread framework.
storage/maria/ma_servicethread.c:
Added files of service thread framework.
storage/maria/ma_servicethread.h:
Added files of service thread framework.
Diffstat (limited to 'storage/maria/Makefile.am')
-rw-r--r-- | storage/maria/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/storage/maria/Makefile.am b/storage/maria/Makefile.am index 0f1e482c3a1..160d2ad7a14 100644 --- a/storage/maria/Makefile.am +++ b/storage/maria/Makefile.am @@ -73,7 +73,8 @@ noinst_HEADERS = maria_def.h ma_rt_index.h ma_rt_key.h ma_rt_mbr.h \ ma_loghandler.h ma_loghandler_lsn.h ma_pagecache.h \ ma_checkpoint.h ma_recovery.h ma_commit.h ma_state.h \ trnman_public.h ma_check_standalone.h \ - ma_key_recover.h ma_recovery_util.h + ma_key_recover.h ma_recovery_util.h \ + ma_servicethread.h ma_test1_DEPENDENCIES= $(LIBRARIES) ma_test1_LDADD= @CLIENT_EXTRA_LDFLAGS@ libmaria.a \ $(top_builddir)/storage/myisam/libmyisam.a \ @@ -135,7 +136,7 @@ libmaria_a_SOURCES = ma_init.c ma_open.c ma_extra.c ma_info.c ma_rkey.c \ ma_pagecache.c ma_pagecaches.c \ ma_checkpoint.c ma_recovery.c ma_commit.c \ ma_pagecrc.c ma_recovery_util.c \ - ha_maria.cc + ha_maria.cc ma_servicethread.c CLEANFILES = test?.MA? FT?.MA? isam.log ma_test_all ma_rt_test.MA? sp_test.MA? maria_log_control maria_log.0000* SUFFIXES = .sh |