Blame rt/get_clockfreq.c

Packit Service 1c5418
/* Get frequency of the system processor.
Packit Service 1c5418
   Copyright (C) 2000-2018 Free Software Foundation, Inc.
Packit Service 6b2d43
   This file is part of the GNU C Library.
Packit Service 6b2d43
Packit Service 6b2d43
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 6b2d43
   modify it under the terms of the GNU Lesser General Public
Packit Service 6b2d43
   License as published by the Free Software Foundation; either
Packit Service 6b2d43
   version 2.1 of the License, or (at your option) any later version.
Packit Service 6b2d43
Packit Service 6b2d43
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 6b2d43
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 6b2d43
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 6b2d43
   Lesser General Public License for more details.
Packit Service 6b2d43
Packit Service 6b2d43
   You should have received a copy of the GNU Lesser General Public
Packit Service 6b2d43
   License along with the GNU C Library; if not, see
Packit Service 6b2d43
   <http://www.gnu.org/licenses/>.  */
Packit Service 6b2d43
Packit Service 1c5418
#include <libc-internal.h>
Packit Service 6b2d43
Packit Service 1c5418
hp_timing_t
Packit Service 1c5418
__get_clockfreq (void)
Packit Service 6b2d43
{
Packit Service 1c5418
  /* There is no generic way to find this out since we have in general
Packit Service 1c5418
     no counter register either.  */
Packit Service 6b2d43
  return 0;
Packit Service 6b2d43
}