dl_open.c revision 50c83d09652262aba75a6182b3203c80b48b092b
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <errno.h>
#include <dluser.h>
#include <dlhdr.h>
static struct dl_descriptor *_dlfds;
static int _nfds;
extern struct dl_address *dl_mkaddress();
int
{
int fd;
return (-1);
}
/* now have open device - do inforequest */
return (-1);
else
return (fd);
}
/* this actually does the work that dl_open needs done also */
int
{
struct dl_descriptor *dl;
int flags;
/* first time? */
if (_nfds == 0) {
sizeof (struct dl_descriptor));
return (-1);
}
/* get the info_ack data */
return (-1);
}
flags = 0;
return (-1);
}
/* now have all in place */
return (-1);
}
/* now pick out the relevent information and fake the rest */
#if defined(DLPI_1)
#else
#endif
return (fd);
}
struct dl_descriptor *
{
struct dl_descriptor *dl;
return (dl);
}
return (NULL);
}
int
{
struct dl_descriptor *dl;
}
}
return (DLSYSERR);
}