/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (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
*/
/*
*/
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <assert.h>
#include <libuutil.h>
#include <libintl.h>
#include <string.h>
#include <procfs.h>
#include <libcontract.h>
#include <libcontract_priv.h>
#include "libcontract_impl.h"
#include "process_dump.h"
#include "device_dump.h"
{ "process", event_process },
{ "device", event_device }
};
static int
{
return (0);
return (-1);
}
int
{
int cfd, r;
return (errno);
return (r);
}
return (0);
}
int
{
int n, fd;
type = "all";
if (n >= PATH_MAX) {
return (-1);
}
if (fd != -1) {
return (-1);
}
}
return (fd);
}
int
{
if (fd == -1)
return (errno);
return (err);
}
getctid(void)
{
int fd;
return (-1);
return (-1);
}
return (ps.pr_contract);
}
void
{
}
void
{
char *s;
} else {
}
/*LINTED*/
}
/*
* return 0 if all supplied decorations match
* 1 if at least only one supplied decoration diverges
* on error, errno is set and -1 is returned
*/
int
const char *svc_creator, const char *svc_aux)
{
char *ct_svc_fmri;
char *ct_creator;
char *ct_svc_aux;
int fd;
int e;
int r = 0;
return (-1);
}
O_RDONLY)) == -1) {
return (-1);
}
errno = e;
return (-1);
}
if ((e = ct_pr_status_get_svc_fmri(status,
&ct_svc_fmri)) != 0) {
r = -1;
goto out;
}
r = 1;
goto out;
}
}
if (ctid != -1) {
r = -1;
goto out;
}
r = 1;
goto out;
}
}
if (svc_creator != NULL) {
if ((e = ct_pr_status_get_svc_creator(status,
&ct_creator)) != 0) {
r = -1;
goto out;
}
r = 1;
goto out;
}
}
r = -1;
goto out;
}
r = 1;
goto out;
}
}
out:
if (r == -1)
errno = e;
return (r);
}