aboutsummaryrefslogtreecommitdiffstats
path: root/package/qos-scripts/files/usr/lib
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-10-27 07:54:52 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-10-27 07:54:52 +0000
commit415814f051256b7e6c760ddb36eacd831a41d58b (patch)
treebaa99a6fb85da994a02c7d7beb3fae169a7c7e4e /package/qos-scripts/files/usr/lib
parent16463467985f9acad0f6ad6b24cbd0fd6f9bca78 (diff)
downloadupstream-415814f051256b7e6c760ddb36eacd831a41d58b.tar.gz
upstream-415814f051256b7e6c760ddb36eacd831a41d58b.tar.bz2
upstream-415814f051256b7e6c760ddb36eacd831a41d58b.zip
ar71xx: fix typos in image/Makefile
SVN-Revision: 28618
Diffstat (limited to 'package/qos-scripts/files/usr/lib')
0 files changed, 0 insertions, 0 deletions
color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
--  GHDL Run Time (GRT) - Symbolization using jit interface.
--  Copyright (C) 2015 Tristan Gingold
--
--  GHDL is free software; you can redistribute it and/or modify it under
--  the terms of the GNU General Public License as published by the Free
--  Software Foundation; either version 2, or (at your option) any later
--  version.
--
--  GHDL is distributed in the hope that it will be useful, but WITHOUT ANY
--  WARRANTY; without even the implied warranty of MERCHANTABILITY or
--  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
--  for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with GCC; see the file COPYING.  If not, write to the Free
--  Software Foundation, 59 Temple Place - Suite 330, Boston, MA
--  02111-1307, USA.
--
--  As a special exception, if other files instantiate generics from this
--  unit, or you link this unit with other files to produce an executable,
--  this unit does not by itself cause the resulting executable to be
--  covered by the GNU General Public License. This exception does not
--  however invalidate any other reasons why the executable file might be
--  covered by the GNU Public License.

with System;

package Grt.Backtraces.Jit is
   pragma Preelaborate (Grt.Backtraces.Jit);

   procedure Symbolizer (Pc : System.Address;
                         Filename : out System.Address;
                         Lineno : out Natural;
                         Subprg : out System.Address);

   --  In order to keep the package preelaborated, use an indirection.
   type Symbolizer_Acc is access procedure (Pc : System.Address;
                                            Filename : out System.Address;
                                            Lineno : out Natural;
                                            Subprg : out System.Address);

   Symbolizer_Proc : Symbolizer_Acc;

end Grt.Backtraces.Jit;