1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
 int
 saf_setProps_MemoryResident(SAF_DbProps *properties)
 {
     SAF_ENTER(saf_setProps_MemoryResident, SAF_PRECONDITION_ERROR);
     SAF_DbProps *p = properties;

     SAF_REQUIRE(p, SAF_LOW_CHK_COST, SAF_PRECONDITION_ERROR,
       _saf_errmsg("PROPERTIES must not be null"));

     p->MemoryResident = true;
     SAF_LEAVE(SAF_SUCCESS);
 }