ports/infrastructure/lib/DPB/AffinityStub.pm

62 lines
1.2 KiB
Perl
Raw Normal View History

2023-08-16 22:26:55 +00:00
# ex:ts=8 sw=4:
# $OpenBSD: AffinityStub.pm,v 1.2 2023/05/06 05:20:31 espie Exp $
#
# Copyright (c) 2012-2013 Marc Espie <espie@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
use v5.36;
# single-host version of affinity, doesn't do much
package DPB::AffinityStub;
use File::Path;
use DPB::PkgPath;
sub new($class, $, $)
{
bless {}, $class;
}
sub start($, $, $)
{
}
sub unmark($, $)
{
}
sub finished($, $)
{
}
sub retrieve_existing_markers($, $)
{
}
sub simplifies_to($, $, $)
{
}
sub sorted($self, $queue, $core)
{
return $queue->sorted($core);
}
sub has_in_queue($, $)
{
}
1;