Exemplo n.º 1
0
int32_t NaClSysMmap(struct NaClApp  *nap,
                    void                  *start,
                    size_t                length,
                    int                   prot,
                    int                   flags,
                    int                   d,
                    nacl_abi_off_t        *offp) {
  return NaClCommonSysMmap(nap, start, length, prot, flags, d, offp);
}
Exemplo n.º 2
0
int32_t NaClSysMmap(struct NaClAppThread  *natp,
                    void                  *start,
                    size_t                length,
                    int                   prot,
                    int                   flags,
                    int                   d,
                    nacl_abi_off_t        offset) {
  return NaClCommonSysMmap(natp, start, length, prot, flags, d, offset);
}