On Tue, 2015-05-12 at 18:22 +0000, sv...@va... wrote: > + The KIND parameter tells what kind of ADDR is allowed: > + 'M' ADDR must be mapped > + 'U' ADDR must be unmapped > + '*' ADDR can be mapped or unmapped > +*/ > +Bool VG_(am_addr_is_in_extensible_client_stack)( Addr addr, HChar kind ) Any reason why an HChar is used, rather than the classical enum ? (which is usually more readable?) |