aboutsummaryrefslogtreecommitdiffstats
path: root/lib/lufa/Projects/Webserver/Lib/uIPManagement.c
diff options
context:
space:
mode:
authorBiacco42 <biacco42@gmail.com>2017-11-19 18:02:39 +0900
committerJack Humbert <jack.humb@gmail.com>2017-12-07 11:10:39 -0500
commit5bbad3147c460cd235802a7762771b029b8f8f34 (patch)
treed43789e0c0564adece40958dbb6a868b347c6cf4 /lib/lufa/Projects/Webserver/Lib/uIPManagement.c
parent2bac7cf414f59774e979cc5eb45fdbf108b6ed6c (diff)
downloadfirmware-5bbad3147c460cd235802a7762771b029b8f8f34.tar.gz
firmware-5bbad3147c460cd235802a7762771b029b8f8f34.tar.bz2
firmware-5bbad3147c460cd235802a7762771b029b8f8f34.zip
Add support for 7x4 ortholinear split KB Ergo42
Diffstat (limited to 'lib/lufa/Projects/Webserver/Lib/uIPManagement.c')
0 files changed, 0 insertions, 0 deletions
f='#n134'>134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
/******************************************************************************
 * xc_cpupool.c
 *
 * API for manipulating and obtaining information on cpupools.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Copyright (c) 2009, J Gross.
 */

#include <stdarg.h>
#include "xc_private.h"

static int do_sysctl_save(xc_interface *xch, struct xen_sysctl *sysctl)
{
    int ret;

    do {
        ret = do_sysctl(xch, sysctl);
    } while ( (ret < 0) && (errno == EAGAIN) );

    return ret;
}

int xc_cpupool_create(xc_interface *xch,