True if segment S holds address A
| 1566 | |
| 1567 | // True if segment S holds address A |
| 1568 | static bool segment_holds(msegmentptr S, mchunkptr A) |
| 1569 | { |
| 1570 | return (char*)A >= S->_base && (char*)A < S->_base + S->_size; |
| 1571 | } |
| 1572 | |
| 1573 | /* |
| 1574 | top_foot_size is padding at the end of a segment, including space |
no outgoing calls
no test coverage detected