| 1667 | |
| 1668 | |
| 1669 | void PAG_set_db_guid(thread_db* tdbb, const Guid& guid) |
| 1670 | { |
| 1671 | /************************************** |
| 1672 | * |
| 1673 | * P A G _ s e t _ d b _ g u i d |
| 1674 | * |
| 1675 | ************************************** |
| 1676 | * |
| 1677 | * Functional description |
| 1678 | * Set sweep interval. |
| 1679 | * |
| 1680 | **************************************/ |
| 1681 | |
| 1682 | SET_TDBB(tdbb); |
| 1683 | add_clump(tdbb, HDR_db_guid, sizeof(Guid), (UCHAR*) &guid, CLUMP_REPLACE); |
| 1684 | } |
| 1685 | |
| 1686 | |
| 1687 | void PAG_set_force_write(thread_db* tdbb, bool flag) |
no test coverage detected