2010-08-26 22:50:56 +04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
* or http://www.opensolaris.org/os/licensing.
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2020-06-11 23:25:39 +03:00
|
|
|
#include <limits.h>
|
2021-04-10 04:28:53 +03:00
|
|
|
#include <stdint.h>
|
2010-08-26 22:50:56 +04:00
|
|
|
#include <unistd.h>
|
2021-04-10 04:28:53 +03:00
|
|
|
#include "../../libspl_impl.h"
|
2010-08-26 22:50:56 +04:00
|
|
|
|
2021-04-10 04:28:53 +03:00
|
|
|
__attribute__((visibility("hidden"))) ssize_t
|
|
|
|
getexecname_impl(char *execname)
|
2010-08-26 22:50:56 +04:00
|
|
|
{
|
2021-04-10 04:28:53 +03:00
|
|
|
return (readlink("/proc/self/exe", execname, PATH_MAX));
|
2010-08-26 22:50:56 +04:00
|
|
|
}
|