blob: e1b002771ee6964545d3f1ecbc95b429ba78eebb [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#include <object/resource_dispatcher.h>
#include <zircon/rights.h>
#include <fbl/alloc_checker.h>
#include <kernel/auto_lock.h>
#include <string.h>
zx_status_t ResourceDispatcher::Create(fbl::RefPtr<ResourceDispatcher>* dispatcher,
zx_rights_t* rights, uint32_t kind,
uint64_t low, uint64_t high) {
fbl::AllocChecker ac;
ResourceDispatcher* disp = new (&ac) ResourceDispatcher(kind, low, high);
if (!ac.check())
return ZX_ERR_NO_MEMORY;
*rights = ZX_DEFAULT_RESOURCE_RIGHTS;
*dispatcher = fbl::AdoptRef<ResourceDispatcher>(disp);
return ZX_OK;
}
ResourceDispatcher::ResourceDispatcher(uint32_t kind, uint64_t low, uint64_t high) :
kind_(kind), low_(low), high_(high), state_tracker_(0) {
}
ResourceDispatcher::~ResourceDispatcher() {
}