* Allocate an executable area. */
| 735 | * Allocate an executable area. |
| 736 | */ |
| 737 | void * |
| 738 | malloc_exec(size_t size, struct malloc_type *mtp, int flags) |
| 739 | { |
| 740 | |
| 741 | return (malloc_domainset_exec(size, mtp, DOMAINSET_RR(), flags)); |
| 742 | } |
| 743 | |
| 744 | void * |
| 745 | malloc_domainset_exec(size_t size, struct malloc_type *mtp, struct domainset *ds, |
no test coverage detected