Exemplo n.º 1
0
static int
inf_child_use_agent (int use)
{
  if (agent_loaded_p ())
    {
      use_agent = use;
      return 1;
    }
  else
    return 0;
}
Exemplo n.º 2
0
static int
inf_child_use_agent (struct target_ops *self, int use)
{
  if (agent_loaded_p ())
    {
      use_agent = use;
      return 1;
    }
  else
    return 0;
}
Exemplo n.º 3
0
static int
inf_child_can_use_agent (void)
{
  return agent_loaded_p ();
}
Exemplo n.º 4
0
static int
inf_child_can_use_agent (struct target_ops *self)
{
  return agent_loaded_p ();
}