1 /*
   2  * This file and its contents are supplied under the terms of the
   3  * Common Development and Distribution License ("CDDL"), version 1.0.
   4  * You may only use this file in accordance with the terms of version
   5  * 1.0 of the CDDL.
   6  *
   7  * A full copy of the text of the CDDL should have accompanied this
   8  * source.  A copy of the CDDL is also available via the Internet at
   9  * http://www.illumos.org/license/CDDL.
  10  */
  11 /*
  12  * Copyright (c) 2013 by Delphix. All rights reserved.
  13  */
  14 
  15 /*
  16  * ::gcore is not supported on sparc, so these functions are not
  17  * implemented.
  18  */
  19 
  20 #ifndef _KMDB
  21 
  22 #include <mdb/mdb_gcore.h>
  23 
  24 uintptr_t
  25 gcore_prgetstackbase(mdb_proc_t *p)
  26 {
  27 }
  28 
  29 int
  30 gcore_prfetchinstr(mdb_klwp_t *lwp, ulong_t *ip)
  31 {
  32 }
  33 
  34 int
  35 gcore_prisstep(mdb_klwp_t *lwp)
  36 {
  37 }
  38 
  39 void
  40 gcore_getgregs(mdb_klwp_t *lwp, gregset_t grp)
  41 {
  42 }
  43 
  44 int
  45 gcore_prgetrvals(mdb_klwp_t *lwp, long *rval1, long *rval2)
  46 {
  47 }
  48 
  49 #endif /* _KMDB */