| 658 | |
| 659 | |
| 660 | bool CCH_expand(thread_db* tdbb, ULONG number) |
| 661 | { |
| 662 | /************************************** |
| 663 | * |
| 664 | * C C H _ e x p a n d |
| 665 | * |
| 666 | ************************************** |
| 667 | * |
| 668 | * Functional description |
| 669 | * Expand the cache to at least a given number of buffers. If |
| 670 | * it's already that big, don't do anything. |
| 671 | * |
| 672 | **************************************/ |
| 673 | SET_TDBB(tdbb); |
| 674 | |
| 675 | return expand_buffers(tdbb, number); |
| 676 | } |
| 677 | |
| 678 | |
| 679 | pag* CCH_fake(thread_db* tdbb, WIN* window, int wait) |
no test coverage detected