mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
This is a major redesign a modernization of Sysprof. The core data structures and design are largely the same, but it has been ported to Gtk3 and has lots of additions that should make your profiling experience smoother. Especially for those that are new to profiling. There are some very simple help docs added, but we really need the experts to come in and write some documentation here.
39 lines
617 B
C
39 lines
617 B
C
#ifndef SP_CREDITS_H
|
|
#define SP_CREDITS_H
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
static gchar *sysprof_authors[] = {
|
|
"Bastien Nocera",
|
|
"Behdad Esfahbod",
|
|
"Christian Hergert",
|
|
"Damien Lespiau",
|
|
"Geoffrey Keating",
|
|
"Javier Jardón",
|
|
"Jeffrey Stedfast",
|
|
"Kristian Høgsberg",
|
|
"Kristian Rietvel",
|
|
"M Joonas Pihlaja",
|
|
"Matthias Clasen",
|
|
"Michel Dänzer",
|
|
"Nix",
|
|
"Owen Taylor",
|
|
"Paolo Borelli",
|
|
"Pascal Terjan",
|
|
"Pauli Nieminen",
|
|
"Robert Love",
|
|
"Søren Sandmann Pedersen",
|
|
NULL
|
|
};
|
|
|
|
static gchar *sysprof_artists[] = {
|
|
"Jakub Steiner",
|
|
NULL
|
|
};
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* SP_CREDITS_H */
|