Changeset 16687 for trunk/contrib
- Timestamp:
- Jan 17, 2016, 2:51:45 AM (5 years ago)
- Location:
- trunk/contrib/huebner/advice-profiler
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/contrib/huebner/advice-profiler/overhead.lisp
r9447 r16687 1 1 ;;; -*- Lisp -*- 2 3 ;;; Copyright (c) 2008, Hans Huebner.4 ;;; This file is part of Clozure CL.5 6 ;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public7 ;;; License , known as the LLGPL and distributed with Clozure CL as the8 ;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL,9 ;;; which is distributed with Clozure CL as the file "LGPL". Where these10 ;;; conflict, the preamble takes precedence.11 2 ;;; 12 ;;; Clozure CL is referenced in the preamble as the "LIBRARY."3 ;;; Copyright 2008 Hans Huebner 13 4 ;;; 14 ;;; The LLGPL is also available online at 15 ;;; http://opensource.franz.com/preamble.html 5 ;;; Licensed under the Apache License, Version 2.0 (the "License"); 6 ;;; you may not use this file except in compliance with the License. 7 ;;; You may obtain a copy of the License at 8 ;;; 9 ;;; http://www.apache.org/licenses/LICENSE-2.0 10 ;;; 11 ;;; Unless required by applicable law or agreed to in writing, software 12 ;;; distributed under the License is distributed on an "AS IS" BASIS, 13 ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ;;; See the License for the specific language governing permissions and 15 ;;; limitations under the License. 16 16 17 17 ;;; Profiling overhead calculation -
trunk/contrib/huebner/advice-profiler/package.lisp
r9447 r16687 1 1 ;;; -*- Lisp -*- 2 3 ;;; Copyright (c) 2008, Hans Huebner.4 ;;; This file is part of Clozure CL.5 6 ;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public7 ;;; License , known as the LLGPL and distributed with Clozure CL as the8 ;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL,9 ;;; which is distributed with Clozure CL as the file "LGPL". Where these10 ;;; conflict, the preamble takes precedence.11 2 ;;; 12 ;;; Clozure CL is referenced in the preamble as the "LIBRARY."3 ;;; Copyright 2008 Hans Huebner 13 4 ;;; 14 ;;; The LLGPL is also available online at 15 ;;; http://opensource.franz.com/preamble.html 5 ;;; Licensed under the Apache License, Version 2.0 (the "License"); 6 ;;; you may not use this file except in compliance with the License. 7 ;;; You may obtain a copy of the License at 8 ;;; 9 ;;; http://www.apache.org/licenses/LICENSE-2.0 10 ;;; 11 ;;; Unless required by applicable law or agreed to in writing, software 12 ;;; distributed under the License is distributed on an "AS IS" BASIS, 13 ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ;;; See the License for the specific language governing permissions and 15 ;;; limitations under the License. 16 16 17 17 (in-package "CL-USER") -
trunk/contrib/huebner/advice-profiler/profiler.asd
r9447 r16687 1 1 ;;; -*- Lisp -*- 2 3 ;;; Copyright (c) 2008, Hans Huebner.4 ;;; This file is part of Clozure CL.5 6 ;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public7 ;;; License , known as the LLGPL and distributed with Clozure CL as the8 ;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL,9 ;;; which is distributed with Clozure CL as the file "LGPL". Where these10 ;;; conflict, the preamble takes precedence.11 2 ;;; 12 ;;; Clozure CL is referenced in the preamble as the "LIBRARY."3 ;;; Copyright 2008 Hans Huebner 13 4 ;;; 14 ;;; The LLGPL is also available online at 15 ;;; http://opensource.franz.com/preamble.html 5 ;;; Licensed under the Apache License, Version 2.0 (the "License"); 6 ;;; you may not use this file except in compliance with the License. 7 ;;; You may obtain a copy of the License at 8 ;;; 9 ;;; http://www.apache.org/licenses/LICENSE-2.0 10 ;;; 11 ;;; Unless required by applicable law or agreed to in writing, software 12 ;;; distributed under the License is distributed on an "AS IS" BASIS, 13 ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ;;; See the License for the specific language governing permissions and 15 ;;; limitations under the License. 16 16 17 17 (in-package "CL-USER") -
trunk/contrib/huebner/advice-profiler/profiler.lisp
r12876 r16687 1 1 ;;; -*- Lisp -*- 2 3 ;;; Copyright (c) 2008, Hans Huebner.4 ;;; This file is part of Clozure CL.5 6 ;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public7 ;;; License , known as the LLGPL and distributed with Clozure CL as the8 ;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL,9 ;;; which is distributed with Clozure CL as the file "LGPL". Where these10 ;;; conflict, the preamble takes precedence.11 2 ;;; 12 ;;; Clozure CL is referenced in the preamble as the "LIBRARY."3 ;;; Copyright 2008 Hans Huebner 13 4 ;;; 14 ;;; The LLGPL is also available online at 15 ;;; http://opensource.franz.com/preamble.html 5 ;;; Licensed under the Apache License, Version 2.0 (the "License"); 6 ;;; you may not use this file except in compliance with the License. 7 ;;; You may obtain a copy of the License at 8 ;;; 9 ;;; http://www.apache.org/licenses/LICENSE-2.0 10 ;;; 11 ;;; Unless required by applicable law or agreed to in writing, software 12 ;;; distributed under the License is distributed on an "AS IS" BASIS, 13 ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ;;; See the License for the specific language governing permissions and 15 ;;; limitations under the License. 16 16 17 17 ;;; Deterministic profiler for Clozure CL
Note: See TracChangeset
for help on using the changeset viewer.