1216594Ssyrinx#-
2216594Ssyrinx# Copyright (C) 2010 The FreeBSD Foundation
3216594Ssyrinx# All rights reserved.
4216594Ssyrinx#
5216594Ssyrinx# This software was developed by Shteryana Sotirova Shopova under
6216594Ssyrinx# sponsorship from the FreeBSD Foundation.
7216594Ssyrinx#
8216594Ssyrinx# Redistribution and use in source and binary forms, with or without
9216594Ssyrinx# modification, are permitted provided that the following conditions
10216594Ssyrinx# are met:
11216594Ssyrinx# 1. Redistributions of source code must retain the above copyright
12216594Ssyrinx#    notice, this list of conditions and the following disclaimer.
13216594Ssyrinx# 2. Redistributions in binary form must reproduce the above copyright
14216594Ssyrinx#    notice, this list of conditions and the following disclaimer in the
15216594Ssyrinx#   documentation and/or other materials provided with the distribution.
16216594Ssyrinx#
17216594Ssyrinx# THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18216594Ssyrinx# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19216594Ssyrinx# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20216594Ssyrinx# ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21216594Ssyrinx# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22216594Ssyrinx# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23216594Ssyrinx# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24216594Ssyrinx# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25216594Ssyrinx# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26216594Ssyrinx# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27216594Ssyrinx# SUCH DAMAGE.
28216594Ssyrinx#
29216594Ssyrinx# $FreeBSD$
30216594Ssyrinx#
31216594Ssyrinx
32216594Ssyrinxtypedef RowStatus ENUM (
33216594Ssyrinx	1 active
34216594Ssyrinx	2 notInService
35216594Ssyrinx	3 notReady
36216594Ssyrinx	4 createAndGo
37216594Ssyrinx	5 createAndWait
38216594Ssyrinx	6 destroy
39216594Ssyrinx)
40216594Ssyrinx
41