blob: 3a7622f5a667482c8e8568ba183e77a8463a0f9e [file] [log] [blame]
/*
* Copyright (c) 2008 Texas Instruments. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License
* v. 1.0 which accompanies this distribution. The Eclipse Public License is
* available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse
* Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Texas Instruments - initial implementation
* */
import xdc.runtime.IGateProvider;
/*!
* ======== GateGIE ========
* Global interrupt disable/enable implementation of `{@link IGateProvider}`
*
* Instances of this gate implementation disable all interrupts and should only
* be used for modules in which the data structures protected by module-level
* gates are held for fixed short durations.
*/
module GateGIE inherits IGateProvider {
instance:
/*!
* ======== create ========
* Create a `GateGIE` gate
*/
create();
}