xref: /titanic_52/usr/src/lib/libumem/sparc/umem_genasm.c (revision 144f99a50481321408997219d433ad7cc8f0ef5e)
14f364e7cSRobert Mustacchi /*
24f364e7cSRobert Mustacchi  * CDDL HEADER START
34f364e7cSRobert Mustacchi  *
44f364e7cSRobert Mustacchi  * The contents of this file are subject to the terms of the
54f364e7cSRobert Mustacchi  * Common Development and Distribution License (the "License").
64f364e7cSRobert Mustacchi  * You may not use this file except in compliance with the License.
74f364e7cSRobert Mustacchi  *
84f364e7cSRobert Mustacchi  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
94f364e7cSRobert Mustacchi  * or http://www.opensolaris.org/os/licensing.
104f364e7cSRobert Mustacchi  * See the License for the specific language governing permissions
114f364e7cSRobert Mustacchi  * and limitations under the License.
124f364e7cSRobert Mustacchi  *
134f364e7cSRobert Mustacchi  * When distributing Covered Code, include this CDDL HEADER in each
144f364e7cSRobert Mustacchi  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
154f364e7cSRobert Mustacchi  * If applicable, add the following below this CDDL HEADER, with the
164f364e7cSRobert Mustacchi  * fields enclosed by brackets "[]" replaced with your own identifying
174f364e7cSRobert Mustacchi  * information: Portions Copyright [yyyy] [name of copyright owner]
184f364e7cSRobert Mustacchi  *
194f364e7cSRobert Mustacchi  * CDDL HEADER END
204f364e7cSRobert Mustacchi  */
214f364e7cSRobert Mustacchi /*
22*144f99a5SGordon Ross  * Copyright (c) 2014 Joyent, Inc.  All rights reserved.
234f364e7cSRobert Mustacchi  */
244f364e7cSRobert Mustacchi 
254f364e7cSRobert Mustacchi /*
264f364e7cSRobert Mustacchi  * Don't Panic! If you wonder why this seemingly empty file exists, it's because
274f364e7cSRobert Mustacchi  * there is no sparc implementation for ptcumem. Go read libumem's big theory
284f364e7cSRobert Mustacchi  * statement in lib/libumem/common/umem.c, particularly section eight.
294f364e7cSRobert Mustacchi  */
304f364e7cSRobert Mustacchi 
31*144f99a5SGordon Ross #include <inttypes.h>
32*144f99a5SGordon Ross #include <strings.h>
33*144f99a5SGordon Ross #include <umem_impl.h>
34*144f99a5SGordon Ross #include "umem_base.h"
35*144f99a5SGordon Ross 
364f364e7cSRobert Mustacchi const int umem_genasm_supported = 0;
374f364e7cSRobert Mustacchi 
384f364e7cSRobert Mustacchi /*ARGSUSED*/
394f364e7cSRobert Mustacchi int
40*144f99a5SGordon Ross umem_genasm(int *alloc_sizes, umem_cache_t **caches, int ncaches)
414f364e7cSRobert Mustacchi {
424f364e7cSRobert Mustacchi 	return (1);
434f364e7cSRobert Mustacchi }
44